diff --git a/frontend/src/components/TransactionsTable.tsx b/frontend/src/components/TransactionsTable.tsx index d65837e..1d2e125 100644 --- a/frontend/src/components/TransactionsTable.tsx +++ b/frontend/src/components/TransactionsTable.tsx @@ -413,9 +413,9 @@ export default function TransactionsTable() {

Income

-

+ +{formatCurrency(stats.totalIncome, displayCurrency)} -

+ @@ -427,9 +427,9 @@ export default function TransactionsTable() {

Expenses

-

+ -{formatCurrency(stats.totalExpenses, displayCurrency)} -

+ @@ -441,14 +441,14 @@ export default function TransactionsTable() {

Net Change

-

= 0 ? "text-green-600" : "text-red-600" }`} > {stats.netChange >= 0 ? "+" : ""} {formatCurrency(stats.netChange, displayCurrency)} -

+ {stats.netChange >= 0 ? (