diff --git a/src/components/WalletViewer.tsx b/src/components/WalletViewer.tsx
index 2d37ad2..66325d5 100644
--- a/src/components/WalletViewer.tsx
+++ b/src/components/WalletViewer.tsx
@@ -1064,8 +1064,8 @@ export default function WalletViewer() {
className="text-4xl font-bold font-mono hover:opacity-70 transition-opacity cursor-pointer flex items-center gap-3"
title="Click to toggle privacy blur"
>
-
- {formatSats(balance)}
+
+ {state.walletBalancesBlurred ? "••••••" : formatSats(balance)}
{state.walletBalancesBlurred ? (
- {formatSats(tx.amount)}
+
+ {state.walletBalancesBlurred
+ ? "••••"
+ : formatSats(tx.amount)}
- {formatSats(selectedTransaction.amount)} sats +
+ {state.walletBalancesBlurred + ? "•••••• sats" + : `${formatSats(selectedTransaction.amount)} sats`}
@@ -1287,10 +1287,10 @@ export default function WalletViewer() { -- {formatSats(selectedTransaction.fees_paid)} sats +
+ {state.walletBalancesBlurred + ? "•••• sats" + : `${formatSats(selectedTransaction.fees_paid)} sats`}
)} @@ -1446,21 +1446,20 @@ export default function WalletViewer() { {invoiceDetails?.amount && !sendAmount && (