From 2e96d60f8f27edac9f4962f5457601440cca6e37 Mon Sep 17 00:00:00 2001 From: Padreug Date: Thu, 4 Jun 2026 23:43:30 +0200 Subject: [PATCH] fix(activities): drop duplicate empty-state line on ActivityList MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The empty state rendered "No activities found" twice — once as the heading and once as the description below, because `activities.noActivities` and `activities.search.noResults` translate to the same string in every locale. Drop the description paragraph (and its mb-1 spacer on the heading). --- src/modules/activities/components/ActivityList.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/modules/activities/components/ActivityList.vue b/src/modules/activities/components/ActivityList.vue index 36e7177..45a0567 100644 --- a/src/modules/activities/components/ActivityList.vue +++ b/src/modules/activities/components/ActivityList.vue @@ -43,12 +43,9 @@ const { t } = useI18n() class="flex flex-col items-center justify-center py-16 text-center" > -

+

{{ t('activities.noActivities') }}

-

- {{ t('activities.search.noResults') }} -