diff --git a/public/locales/en/widgets/location.json b/public/locales/en/widgets/location.json index b83836e20..d2afe05cd 100644 --- a/public/locales/en/widgets/location.json +++ b/public/locales/en/widgets/location.json @@ -26,9 +26,8 @@ "select": "Select {{city}}, {{countryCode}}" }, "population": { - "fallback": "Unknown", - "count": "{{count}} people" + "fallback": "Unknown" } } } -} +} \ No newline at end of file diff --git a/src/components/Dashboard/Tiles/Widgets/Inputs/LocationSelection.tsx b/src/components/Dashboard/Tiles/Widgets/Inputs/LocationSelection.tsx index 008d07c76..90ff64b02 100644 --- a/src/components/Dashboard/Tiles/Widgets/Inputs/LocationSelection.tsx +++ b/src/components/Dashboard/Tiles/Widgets/Inputs/LocationSelection.tsx @@ -196,9 +196,7 @@ const CitySelectModal = ({ opened, closeModal, query, onCitySelected }: CitySele {city.population ? ( - - {t('modal.table.population.count', { count: city.population })} - + {city.population} ) : ( {t('modal.table.population.fallback')} )}