aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-04-06 00:18:18 +0100
committerMohamedBassem <me@mbassem.com>2024-04-06 00:18:18 +0100
commita81c3941465e4fe650049e2557b9d5bbc67d47a8 (patch)
treedc4e02ea46aa85ebd0d20970a2cbdd0faff4a022 /apps/mobile
parent91b088db868eecc0d048e52a3529846ae4d5c580 (diff)
downloadkarakeep-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.tsx1
-rw-r--r--apps/mobile/app/dashboard/lists/[slug].tsx1
-rw-r--r--apps/mobile/app/dashboard/tags/[slug].tsx1
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} />}