diff --git a/app/ui/ViewBillBadge.tsx b/app/ui/ViewBillBadge.tsx index d0ae494..672a96b 100644 --- a/app/ui/ViewBillBadge.tsx +++ b/app/ui/ViewBillBadge.tsx @@ -14,7 +14,7 @@ export const ViewBillBadge: FC = ({ locationId, bill: { _id: const currentLocale = useLocale(); return ( - + {name} ); diff --git a/app/ui/ViewLocationCard.tsx b/app/ui/ViewLocationCard.tsx index d6e9135..292b533 100644 --- a/app/ui/ViewLocationCard.tsx +++ b/app/ui/ViewLocationCard.tsx @@ -21,7 +21,7 @@ export const ViewLocationCard:FC = ({location: { _id, nam return(
-

{formatYearMonth(yearMonth)} {name}

+

{formatYearMonth(yearMonth)} {name}

{ bills.map(bill => ) @@ -29,7 +29,7 @@ export const ViewLocationCard:FC = ({location: { _id, nam
{ monthlyExpense > 0 ? -

+

{ t("payed-total-label") } ${formatCurrency(monthlyExpense)}

: null