aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/dashboard/layout.tsx')
-rw-r--r--apps/web/app/dashboard/layout.tsx20
1 files changed, 2 insertions, 18 deletions
diff --git a/apps/web/app/dashboard/layout.tsx b/apps/web/app/dashboard/layout.tsx
index 81b44a3c..be65e66a 100644
--- a/apps/web/app/dashboard/layout.tsx
+++ b/apps/web/app/dashboard/layout.tsx
@@ -16,7 +16,6 @@ import {
Highlighter,
Home,
Search,
- Sparkles,
Tag,
} from "lucide-react";
@@ -35,10 +34,9 @@ export default async function Dashboard({
redirect("/");
}
- const [lists, userSettings, showWrapped] = await Promise.all([
+ const [lists, userSettings] = await Promise.all([
tryCatch(api.lists.list()),
tryCatch(api.users.settings()),
- tryCatch(api.users.hasWrapped()),
]);
if (userSettings.error) {
@@ -57,10 +55,6 @@ export default async function Dashboard({
throw lists.error;
}
- if (showWrapped.error) {
- throw showWrapped.error;
- }
-
const items = (t: TFunction) =>
[
{
@@ -92,20 +86,10 @@ export default async function Dashboard({
icon: <Archive size={18} />,
path: "/dashboard/archive",
},
- // Only show wrapped if user has at least 20 bookmarks
- showWrapped.data
- ? [
- {
- name: t("wrapped.button"),
- icon: <Sparkles size={18} />,
- path: "/dashboard/wrapped",
- },
- ]
- : [],
].flat();
const mobileSidebar = (t: TFunction) => [
- ...items(t).filter((item) => item.path !== "/dashboard/wrapped"),
+ ...items(t),
{
name: t("lists.all_lists"),
icon: <ClipboardList size={18} />,