From 8f820d219f2a3b36d673c13199f7f5909d070b53 Mon Sep 17 00:00:00 2001 From: Alexander Schmidt Date: Wed, 11 Feb 2026 17:59:28 +0100 Subject: [PATCH] refactor: simplify listing fee to fixed USD, fix empty state i18n --- js/components/pages/page-home.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/components/pages/page-home.js b/js/components/pages/page-home.js index 0c27897..6b3ad31 100644 --- a/js/components/pages/page-home.js +++ b/js/components/pages/page-home.js @@ -411,6 +411,9 @@ class PageHome extends HTMLElement { const searchBox = this.querySelector('search-box') if (searchBox) searchBox.loadAndRender() + + const emptyState = this.querySelector('.empty-state p') + if (emptyState) emptyState.textContent = this.hasActiveFilters() ? t('search.noResults') : t('home.noListings') } getListingsTitle() {