diff options
Diffstat (limited to 'apps/web/app/dashboard/archive')
| -rw-r--r-- | apps/web/app/dashboard/archive/page.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/web/app/dashboard/archive/page.tsx b/apps/web/app/dashboard/archive/page.tsx index 69559185..bc6971db 100644 --- a/apps/web/app/dashboard/archive/page.tsx +++ b/apps/web/app/dashboard/archive/page.tsx @@ -3,7 +3,11 @@ import Bookmarks from "@/components/dashboard/bookmarks/Bookmarks"; export default async function ArchivedBookmarkPage() { return ( <div className="continer mt-4"> - <Bookmarks title="🗄️ Archive" archived={true} showDivider={true} /> + <Bookmarks + header={<p className="text-2xl">🗄️ Archive</p>} + query={{ archived: true }} + showDivider={true} + /> </div> ); } |
