From a353d9801d8a92ccb333f6721931f720ce3defba Mon Sep 17 00:00:00 2001 From: Mohamed Bassem Date: Sun, 18 Jan 2026 23:25:37 +0000 Subject: feat: disable karakeep 2025 wrapped --- apps/web/app/dashboard/layout.tsx | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) (limited to 'apps/web/app/dashboard/layout.tsx') 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: , path: "/dashboard/archive", }, - // Only show wrapped if user has at least 20 bookmarks - showWrapped.data - ? [ - { - name: t("wrapped.button"), - icon: , - path: "/dashboard/wrapped", - }, - ] - : [], ].flat(); const mobileSidebar = (t: TFunction) => [ - ...items(t).filter((item) => item.path !== "/dashboard/wrapped"), + ...items(t), { name: t("lists.all_lists"), icon: , -- cgit v1.2.3-70-g09d2