diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-17 10:15:01 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-17 10:22:38 +0000 |
| commit | c2bd6d6b33dc24c4321228add4fedfade93eb014 (patch) | |
| tree | 6a3d52dbea3143cb95049293e06ef4a1b4efcdeb /apps/mobile/app/dashboard/archive.tsx | |
| parent | 0b99fe783aaebc5baca40f9d1b837278811cd228 (diff) | |
| download | karakeep-c2bd6d6b33dc24c4321228add4fedfade93eb014.tar.zst | |
refactor: Prepare for pagination by dropping querying bookmarks by id
Diffstat (limited to 'apps/mobile/app/dashboard/archive.tsx')
| -rw-r--r-- | apps/mobile/app/dashboard/archive.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mobile/app/dashboard/archive.tsx b/apps/mobile/app/dashboard/archive.tsx index 5c86c6fc..98a03631 100644 --- a/apps/mobile/app/dashboard/archive.tsx +++ b/apps/mobile/app/dashboard/archive.tsx @@ -5,7 +5,7 @@ import PageTitle from "@/components/ui/PageTitle"; export default function Archive() { return ( <SafeAreaView> - <BookmarkList archived header={<PageTitle title="🗄️ Archive" />} /> + <BookmarkList query={{archived: true}} header={<PageTitle title="🗄️ Archive" />} /> </SafeAreaView> ); } |
