diff --git a/src/app/pages/client/sidebar/SearchTab.tsx b/src/app/pages/client/sidebar/SearchTab.tsx
index 574cdbe5..7ceb5c49 100644
--- a/src/app/pages/client/sidebar/SearchTab.tsx
+++ b/src/app/pages/client/sidebar/SearchTab.tsx
@@ -2,27 +2,22 @@ import React from 'react';
import { Icon, Icons } from 'folds';
import { useAtom } from 'jotai';
import { SidebarAvatar, SidebarItem, SidebarItemTooltip } from '../../../components/sidebar';
-import { Search } from '../../../features/search';
import { searchModalAtom } from '../../../state/searchModal';
export function SearchTab() {
const [opened, setOpen] = useAtom(searchModalAtom);
const open = () => setOpen(true);
- const close = () => setOpen(false);
return (
- <>
-
-
- {(triggerRef) => (
-
-
-
- )}
-
-
- {opened && }
- >
+
+
+ {(triggerRef) => (
+
+
+
+ )}
+
+
);
}