diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-23 14:33:28 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-23 14:59:43 +0000 |
| commit | 47bd449fbe50a7b423db860ee6a34a7a3f7c3bb4 (patch) | |
| tree | 50ba6f327644ff33f75c2eb03dc886378c33778e /apps/web/app/dashboard/search | |
| parent | b552f601dcb1d63c63517cdbdc28cbf9bc4ab1ce (diff) | |
| download | karakeep-47bd449fbe50a7b423db860ee6a34a7a3f7c3bb4.tar.zst | |
feature(web): Add dark mode support
Diffstat (limited to 'apps/web/app/dashboard/search')
| -rw-r--r-- | apps/web/app/dashboard/search/page.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/web/app/dashboard/search/page.tsx b/apps/web/app/dashboard/search/page.tsx index 26b984a7..f09041f3 100644 --- a/apps/web/app/dashboard/search/page.tsx +++ b/apps/web/app/dashboard/search/page.tsx @@ -3,6 +3,7 @@ import { Suspense, useRef } from "react"; import BookmarksGrid from "@/components/dashboard/bookmarks/BookmarksGrid"; import { SearchInput } from "@/components/dashboard/search/SearchInput"; +import { Separator } from "@/components/ui/separator"; import { useBookmarkSearch } from "@/lib/hooks/bookmark-search"; import Loading from "../bookmarks/loading"; @@ -16,7 +17,7 @@ function SearchComp() { return ( <div className="container flex flex-col gap-3 p-4"> <SearchInput ref={inputRef} autoFocus={true} /> - <hr /> + <Separator /> {data ? <BookmarksGrid bookmarks={data.bookmarks} /> : <Loading />} </div> ); |
