CAKE-333 | fixed isDisabled property of the send button (send_page.dart)
OleksandrSobol committed
Jun 25, 2021 at 17:49 UTC
889b02871374cfc712687b5fdad0919790f1abe5
1 file changed
+1
-2
lib/src/screens/send/send_page.dart
+1
-2
@@ -570,8 +570,7 @@ class SendPage extends BasePage {
570
textColor: Colors.white,
571
isLoading: sendViewModel.state is IsExecutingState ||
572
sendViewModel.state is TransactionCommitting,
573
- isDisabled:
574
- false // FIXME !(syncStore.status is SyncedSyncStatus),
573
+ isDisabled: !sendViewModel.isReadyForSend,
574
);
575
})),
576
));