From 3a62c533410ea31744b2bb62e5c51f56c24989b0 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/events/components/EventList.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/modules/events/components/EventList.vue b/src/modules/events/components/EventList.vue index fbcc834..cffb3c5 100644 --- a/src/modules/events/components/EventList.vue +++ b/src/modules/events/components/EventList.vue @@ -43,12 +43,9 @@ const { t } = useI18n() class="flex flex-col items-center justify-center py-16 text-center" > -

+

{{ t('events.noEvents') }}

-

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