From 61a6ac8323ed5e80af1dd4a0781796a140715b65 Mon Sep 17 00:00:00 2001 From: Mohamed Bassem Date: Sat, 19 Jul 2025 16:15:26 +0000 Subject: feat(web): Slightly nicer looking tags page --- apps/web/app/dashboard/tags/page.tsx | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'apps/web/app') diff --git a/apps/web/app/dashboard/tags/page.tsx b/apps/web/app/dashboard/tags/page.tsx index 9108d6ba..f8e4d8ea 100644 --- a/apps/web/app/dashboard/tags/page.tsx +++ b/apps/web/app/dashboard/tags/page.tsx @@ -1,18 +1,8 @@ import AllTagsView from "@/components/dashboard/tags/AllTagsView"; -import { Separator } from "@/components/ui/separator"; -import { useTranslation } from "@/lib/i18n/server"; import { api } from "@/server/api/client"; export default async function TagsPage() { - // oxlint-disable-next-line rules-of-hooks - const { t } = await useTranslation(); const allTags = (await api.tags.list()).tags; - return ( -
- {t("tags.all_tags")} - - -
- ); + return ; } -- cgit v1.2.3-70-g09d2