Skip to content

Commit

Permalink
🐛 Fix translation path
Browse files Browse the repository at this point in the history
  • Loading branch information
Meierschlumpf committed Jun 10, 2023
1 parent d00a317 commit f033697
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ const CitySelectModal = ({ opened, closeModal, query, onCitySelected }: CitySele
<td>
{city.population ? (
<Text style={{ whiteSpace: 'nowrap' }}>
{t('modal.population.count', { count: city.population })}
{t('modal.table.population.count', { count: city.population })}
</Text>
) : (
<Text color="dimmed"> {t('modal.population.fallback')}</Text>
<Text color="dimmed"> {t('modal.table.population.fallback')}</Text>
)}
</td>
<td>
Expand Down

0 comments on commit f033697

Please sign in to comment.