We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b2548f commit ec1adb9Copy full SHA for ec1adb9
1 file changed
lib/pages/add_wallet_views/restore_wallet_view/restore_options_view/restore_options_view.dart
@@ -1203,6 +1203,13 @@ class _UriRestoreOptionState extends ConsumerState<UriRestoreOption> {
1203
} catch (_) {
1204
parsed = null;
1205
}
1206
+
1207
+ // If the URI contains a height, switch to block height mode and populate.
1208
+ if (parsed?.height != null) {
1209
+ ref.read(_pIsUsingDate.notifier).state = false;
1210
+ widget.blockHeightController.text = parsed!.height.toString();
1211
+ }
1212
1213
widget.onParsed(parsed);
1214
1215
0 commit comments