From ecfaaec161c76914bf4a3b1792b5cfca915a0397 Mon Sep 17 00:00:00 2001 From: JulianAlcala Date: Tue, 12 May 2026 03:35:39 -0500 Subject: [PATCH] payments child wallet available balance changed to solde --- .../home/lib/src/features/child_wallet/child_wallet_screen.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/payment/modules/home/lib/src/features/child_wallet/child_wallet_screen.dart b/modules/payment/modules/home/lib/src/features/child_wallet/child_wallet_screen.dart index a5743be5..0477bb67 100644 --- a/modules/payment/modules/home/lib/src/features/child_wallet/child_wallet_screen.dart +++ b/modules/payment/modules/home/lib/src/features/child_wallet/child_wallet_screen.dart @@ -116,7 +116,7 @@ class _ChildWalletScreenState extends ConsumerState { final childWallet = viewState.childWallet; final device = viewState.device; final locked = viewState.locked; - final availableBalance = childWallet?.authorizedBalance ?? 0; + final availableBalance = childWallet?.solde ?? 0; final childName = childProfile.firstName; final cardColors = cardColorsFor( theme: theme,