diff options
Diffstat (limited to 'apps/web/app/dashboard/search')
| -rw-r--r-- | apps/web/app/dashboard/search/page.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/app/dashboard/search/page.tsx b/apps/web/app/dashboard/search/page.tsx index 11febca6..e7405c85 100644 --- a/apps/web/app/dashboard/search/page.tsx +++ b/apps/web/app/dashboard/search/page.tsx @@ -2,7 +2,7 @@ import { Suspense, useRef } from "react"; import BookmarksGrid from "@/components/dashboard/bookmarks/BookmarksGrid"; -import ChangeLayout from "@/components/dashboard/ChangeLayout"; +import GlobalActions from "@/components/dashboard/GlobalActions"; import { SearchInput } from "@/components/dashboard/search/SearchInput"; import { FullPageSpinner } from "@/components/ui/full-page-spinner"; import { useBookmarkSearch } from "@/lib/hooks/bookmark-search"; @@ -17,7 +17,7 @@ function SearchComp() { <div className="flex flex-col gap-3"> <div className="flex gap-2"> <SearchInput ref={inputRef} autoFocus={true} /> - <ChangeLayout /> + <GlobalActions /> </div> {data ? ( <BookmarksGrid bookmarks={data.bookmarks} /> |
