Skip to content

Commit

Permalink
balance fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fossephate committed Sep 24, 2024
1 parent 55d8b96 commit 154eee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/view_model/send/send_view_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
PendingTransaction? pendingTransaction;

@computed
String get balance => wallet.balance[selectedCryptoCurrency]!.formattedAvailableBalance;
String get balance => wallet.balance[selectedCryptoCurrency]!.formattedFullAvailableBalance;

@computed
bool get isFiatDisabled => balanceViewModel.isFiatDisabled;
Expand Down

0 comments on commit 154eee3

Please sign in to comment.