diff --git a/app/ui/LocationCard.tsx b/app/ui/LocationCard.tsx index 238a4ff..e8352d1 100644 --- a/app/ui/LocationCard.tsx +++ b/app/ui/LocationCard.tsx @@ -59,12 +59,13 @@ export const LocationCard: FC = ({ location, currency }) => { {monthlyExpense > 0 || seenByTenant || utilBillsProofOfPaymentUploadedAt ? + <> +
{t("monthly-statement-legend")}
+ -
- {t("monthly-statement-legend")} { monthlyExpense > 0 ? -
+
{t("payed-total-label")} {formatCurrency(monthlyExpense, currency ?? "EUR")} @@ -72,7 +73,7 @@ export const LocationCard: FC = ({ location, currency }) => { : null } {seenByTenant && ( -
+
{t("seen-by-tenant-label")} @@ -82,14 +83,14 @@ export const LocationCard: FC = ({ location, currency }) => { {t("download-proof-of-payment-label")} )} -
: null + : null }