From 4b7121271a1103794c4fa2d078f05ae8df6d09bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=B6rdle=20Bot?= Date: Thu, 4 Dec 2025 13:02:11 +0100 Subject: [PATCH] Remove curated specials button from localized admin page --- app/[locale]/admin/page.tsx | 53 +++++++++++++++++++++++++++---------- 1 file changed, 39 insertions(+), 14 deletions(-) diff --git a/app/[locale]/admin/page.tsx b/app/[locale]/admin/page.tsx index 18fbc32..4570dcc 100644 --- a/app/[locale]/admin/page.tsx +++ b/app/[locale]/admin/page.tsx @@ -1320,20 +1320,45 @@ export default function AdminPage({ params }: { params: { locale: string } }) {
{specials.map(special => ( -
- {getLocalizedValue(special.name, activeTab)} ({special._count?.songs || 0}) - {special.subtitle && - {getLocalizedValue(special.subtitle, activeTab)}} - {t('curate')} - - +
+ + {getLocalizedValue(special.name, activeTab)} ({special._count?.songs || 0}) + + {special.subtitle && ( + + - {getLocalizedValue(special.subtitle, activeTab)} + + )} + +
))}