refactor: simplify listing fee to fixed USD, fix empty state i18n

This commit is contained in:
2026-02-11 17:59:28 +01:00
parent 3bbd777fe1
commit 8f820d219f

View File

@@ -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() {