diff options
| author | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2025-08-25 09:47:23 +0200 |
|---|---|---|
| committer | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2025-08-25 09:47:23 +0200 |
| commit | 3f0655d280e744e685b5b449d716ff1443c93690 (patch) | |
| tree | 6fff4e6608c69c15aadff61b32f1f2f55ab61ccc /frontend/src/components/Sidebar/Search.tsx | |
| parent | Restructured sidebar and implemented links var (diff) | |
| download | lphub-3f0655d280e744e685b5b449d716ff1443c93690.tar.gz lphub-3f0655d280e744e685b5b449d716ff1443c93690.tar.bz2 lphub-3f0655d280e744e685b5b449d716ff1443c93690.zip | |
Removed unnecessary imports
Diffstat (limited to 'frontend/src/components/Sidebar/Search.tsx')
| -rw-r--r-- | frontend/src/components/Sidebar/Search.tsx | 3 |
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 | ||
| 8 | interface SearchProps { | 8 | interface SearchProps { |
| 9 | profile?: UserProfile; | 9 | profile?: UserProfile; |
| 10 | isSearching: boolean; | ||
| 11 | }; | 10 | }; |
| 12 | 11 | ||
| 13 | const _Search: React.FC<SearchProps> = ({ profile, isSearching }) => { | 12 | const _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 | ); |