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)}
+
+ )}
+
+
))}