Fixed LocationCard translation

This commit is contained in:
2024-02-17 10:34:34 +01:00
parent 5ecf5d8be4
commit 440ab6a815
3 changed files with 3 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ export const LocationCard:FC<LocationCardProps> = ({location: { _id, name, yearM
{
monthlyExpense > 0 ?
<p>
{ t("payed-total") } <strong>${formatCurrency(monthlyExpense)}</strong>
{ t("payed-total-label") } <strong>${formatCurrency(monthlyExpense)}</strong>
</p>
: null
}