🐛 Fix pull request issues

This commit is contained in:
Meier Lukas
2023-06-11 13:54:15 +02:00
parent 40618cfda4
commit e29ba6455e
2 changed files with 3 additions and 6 deletions

View File

@@ -196,9 +196,7 @@ const CitySelectModal = ({ opened, closeModal, query, onCitySelected }: CitySele
</td>
<td>
{city.population ? (
<Text style={{ whiteSpace: 'nowrap' }}>
{t('modal.table.population.count', { count: city.population })}
</Text>
<Text style={{ whiteSpace: 'nowrap' }}>{city.population}</Text>
) : (
<Text color="dimmed"> {t('modal.table.population.fallback')}</Text>
)}