Skip to content

Commit

Permalink
fix: expand the wallet balance rows properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Restioson authored and klochowicz committed Sep 20, 2023
1 parent d4ab183 commit b179669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/lib/features/wallet/wallet_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class _WalletScreenState extends State<WalletScreen> {
isExpanded: _isBalanceBreakdownOpen,
)
],
expansionCallback: (i, isOpen) => setState(() => _isBalanceBreakdownOpen = !isOpen),
expansionCallback: (i, isOpen) => setState(() => _isBalanceBreakdownOpen = isOpen),
),
const SizedBox(height: 10.0),
if (walletChangeNotifier.lightning().sats == 0)
Expand Down

0 comments on commit b179669

Please sign in to comment.