diff options
| author | MohamedBassem <me@mbassem.com> | 2024-04-06 00:18:18 +0100 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-04-06 00:18:18 +0100 |
| commit | a81c3941465e4fe650049e2557b9d5bbc67d47a8 (patch) | |
| tree | dc4e02ea46aa85ebd0d20970a2cbdd0faff4a022 /apps/mobile | |
| parent | 91b088db868eecc0d048e52a3529846ae4d5c580 (diff) | |
| download | karakeep-a81c3941465e4fe650049e2557b9d5bbc67d47a8.tar.zst | |
feature: Change archived meaning to only mean removed from homepage
Diffstat (limited to 'apps/mobile')
| -rw-r--r-- | apps/mobile/app/dashboard/favourites.tsx | 1 | ||||
| -rw-r--r-- | apps/mobile/app/dashboard/lists/[slug].tsx | 1 | ||||
| -rw-r--r-- | apps/mobile/app/dashboard/tags/[slug].tsx | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/apps/mobile/app/dashboard/favourites.tsx b/apps/mobile/app/dashboard/favourites.tsx index abda5cfa..fb39504b 100644 --- a/apps/mobile/app/dashboard/favourites.tsx +++ b/apps/mobile/app/dashboard/favourites.tsx @@ -7,7 +7,6 @@ export default function Favourites() { <CustomSafeAreaView> <UpdatingBookmarkList query={{ - archived: false, favourited: true, }} header={<PageTitle title="⭐️ Favourites" />} diff --git a/apps/mobile/app/dashboard/lists/[slug].tsx b/apps/mobile/app/dashboard/lists/[slug].tsx index d42cc653..ccde00a8 100644 --- a/apps/mobile/app/dashboard/lists/[slug].tsx +++ b/apps/mobile/app/dashboard/lists/[slug].tsx @@ -26,7 +26,6 @@ export default function ListView() { <View> <UpdatingBookmarkList query={{ - archived: false, listId: list.id, }} header={<PageTitle title={`${list.icon} ${list.name}`} />} diff --git a/apps/mobile/app/dashboard/tags/[slug].tsx b/apps/mobile/app/dashboard/tags/[slug].tsx index ea1ef63d..23d00a7c 100644 --- a/apps/mobile/app/dashboard/tags/[slug].tsx +++ b/apps/mobile/app/dashboard/tags/[slug].tsx @@ -27,7 +27,6 @@ export default function TagView() { <View> <UpdatingBookmarkList query={{ - archived: false, tagId: tag.id, }} header={<PageTitle title={tag.name} />} |
