aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Sidebar/Search.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/Sidebar/Search.tsx')
-rw-r--r--frontend/src/components/Sidebar/Search.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/src/components/Sidebar/Search.tsx b/frontend/src/components/Sidebar/Search.tsx
index 0c6b868..00d9e1e 100644
--- a/frontend/src/components/Sidebar/Search.tsx
+++ b/frontend/src/components/Sidebar/Search.tsx
@@ -7,10 +7,9 @@ import { UserProfile } from "@customTypes/Profile";
7 7
8interface SearchProps { 8interface SearchProps {
9 profile?: UserProfile; 9 profile?: UserProfile;
10 isSearching: boolean;
11}; 10};
12 11
13const _Search: React.FC<SearchProps> = ({ profile, isSearching }) => { 12const _Search: React.FC<SearchProps> = ({ profile }) => {
14 const [searchData, setSearchData] = React.useState<Search | undefined>( 13 const [searchData, setSearchData] = React.useState<Search | undefined>(
15 undefined 14 undefined
16 ); 15 );