diff options
Diffstat (limited to 'apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx')
| -rw-r--r-- | apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx b/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx index b8e8d1e6..8ac90d0a 100644 --- a/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx +++ b/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx @@ -1,4 +1,5 @@ import { useEffect, useMemo } from "react"; +import NoBookmarksBanner from "@/components/dashboard/bookmarks/NoBookmarksBanner"; import { ActionButton } from "@/components/ui/action-button"; import useBulkActionsStore from "@/lib/bulkActions"; import { @@ -70,7 +71,7 @@ export default function BookmarksGrid({ }, [loadMoreButtonInView]); if (bookmarks.length == 0 && !showEditorCard) { - return <p>No bookmarks</p>; + return <NoBookmarksBanner />; } const children = [ |
