Skip to content

Commit af08add

Browse files
committed
search bar function removed to facilitate rendering multiple components
1 parent a60cd78 commit af08add

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

app/components/Occupied/Occupied.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ const Occupied = React.memo(() => {
9191
}
9292

9393
{applications
94-
.filter((db: any) => db[0].toLowerCase().includes(searchTerm.toLowerCase()))
94+
95+
// .filter((db: any) => db[0].toLowerCase().includes(searchTerm.toLowerCase()))
9596
.map((application: string[], i: any) => {
97+
9698
const description = application[3]
9799
if(!example && description === "Example") return <></>
98100
return (

0 commit comments

Comments
 (0)