From a81c3941465e4fe650049e2557b9d5bbc67d47a8 Mon Sep 17 00:00:00 2001
From: MohamedBassem
Date: Sat, 6 Apr 2024 00:18:18 +0100
Subject: feature: Change archived meaning to only mean removed from homepage
---
apps/mobile/app/dashboard/favourites.tsx | 1 -
apps/mobile/app/dashboard/lists/[slug].tsx | 1 -
apps/mobile/app/dashboard/tags/[slug].tsx | 1 -
apps/web/app/dashboard/favourites/page.tsx | 2 +-
apps/web/app/dashboard/lists/[listId]/page.tsx | 2 +-
apps/web/app/dashboard/tags/[tagName]/page.tsx | 2 +-
6 files changed, 3 insertions(+), 6 deletions(-)
(limited to 'apps')
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() {
}
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() {
}
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() {
}
diff --git a/apps/web/app/dashboard/favourites/page.tsx b/apps/web/app/dashboard/favourites/page.tsx
index 8df601c4..13d793c6 100644
--- a/apps/web/app/dashboard/favourites/page.tsx
+++ b/apps/web/app/dashboard/favourites/page.tsx
@@ -4,7 +4,7 @@ export default async function FavouritesBookmarkPage() {
return (
⭐️ Favourites
}
- query={{ favourited: true, archived: false }}
+ query={{ favourited: true }}
showDivider={true}
/>
);
diff --git a/apps/web/app/dashboard/lists/[listId]/page.tsx b/apps/web/app/dashboard/lists/[listId]/page.tsx
index 4d7df133..2b8025e5 100644
--- a/apps/web/app/dashboard/lists/[listId]/page.tsx
+++ b/apps/web/app/dashboard/lists/[listId]/page.tsx
@@ -25,7 +25,7 @@ export default async function ListPage({
return (
diff --git a/apps/web/app/dashboard/tags/[tagName]/page.tsx b/apps/web/app/dashboard/tags/[tagName]/page.tsx
index 3705a6d1..6bbb5234 100644
--- a/apps/web/app/dashboard/tags/[tagName]/page.tsx
+++ b/apps/web/app/dashboard/tags/[tagName]/page.tsx
@@ -31,7 +31,7 @@ export default async function TagPage({
}
- query={{ archived: false, tagId: tag.id }}
+ query={{ tagId: tag.id }}
/>
);
}
--
cgit v1.2.3-70-g09d2