We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fd62d6 commit 595b41cCopy full SHA for 595b41c
1 file changed
lib/pages/send_view/send_view.dart
@@ -1137,7 +1137,9 @@ class _SendViewState extends ConsumerState<SendView> {
1137
if (desktopResult == null || !mounted) return;
1138
txData = desktopResult;
1139
} else {
1140
- final time = Future<dynamic>.delayed(const Duration(milliseconds: 2500));
+ final time = Future<dynamic>.delayed(
1141
+ const Duration(milliseconds: 2500),
1142
+ );
1143
final results = await Future.wait([txDataFuture, time]);
1144
txData = results.first as TxData;
1145
}
0 commit comments