mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
CAKE-333 | fixed isDisabled property of the send button (send_page.dart)
This commit is contained in:
parent
7724d5e248
commit
889b028713
1 changed files with 1 additions and 2 deletions
|
@ -570,8 +570,7 @@ class SendPage extends BasePage {
|
|||
textColor: Colors.white,
|
||||
isLoading: sendViewModel.state is IsExecutingState ||
|
||||
sendViewModel.state is TransactionCommitting,
|
||||
isDisabled:
|
||||
false // FIXME !(syncStore.status is SyncedSyncStatus),
|
||||
isDisabled: !sendViewModel.isReadyForSend,
|
||||
);
|
||||
})),
|
||||
));
|
||||
|
|
Loading…
Reference in a new issue