From 362410c29b7b7a1c47134167a0f5704f74e5fd50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elisi=C3=A1rio=20Couto?= Date: Mon, 8 Dec 2025 15:56:18 +0000 Subject: [PATCH] fix(frontend): Blur balances in transactions page cards. --- frontend/src/components/TransactionsTable.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 ? (