From 9ec0b3a88f43881fc2ecc94ecfb85c4fa70f4290 Mon Sep 17 00:00:00 2001 From: Cosmo Date: Thu, 16 Apr 2026 10:09:58 +0000 Subject: [PATCH] fix: piggy -> money bag icon in savings widget --- src/components/widgets/SavingsWidget.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/widgets/SavingsWidget.tsx b/src/components/widgets/SavingsWidget.tsx index 986f807..a425228 100644 --- a/src/components/widgets/SavingsWidget.tsx +++ b/src/components/widgets/SavingsWidget.tsx @@ -28,7 +28,7 @@ function formatMoney(n: number): string { function getIcon(item: SavingsItem) { if (item.isDeposit) return "🏦"; if (item.isAccount) return "💳"; - return "🐷"; + return "💰"; } function getColor(item: SavingsItem, index: number): string {