CAKE-333 | fixed isDisabled property of the send button (send_page.dart)

This commit is contained in:
OleksandrSobol 2021-06-25 17:49:39 +03:00
parent 7724d5e248
commit 889b028713

View file

@ -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,
);
})),
));