diff --git a/lib/routes/home/widgets/bottom_actions_bar/enter_payment_info_dialog.dart b/lib/routes/home/widgets/bottom_actions_bar/enter_payment_info_dialog.dart index 0d64827a..54dabc6b 100644 --- a/lib/routes/home/widgets/bottom_actions_bar/enter_payment_info_dialog.dart +++ b/lib/routes/home/widgets/bottom_actions_bar/enter_payment_info_dialog.dart @@ -208,7 +208,7 @@ class EnterPaymentInfoDialogState extends State { final texts = context.texts(); try { _setValidatorErrorMessage(""); - final inputType = context.read().parseInput(input: input); + final inputType = await context.read().parseInput(input: input); _log.info("Parsed input type: '${inputType.runtimeType.toString()}"); // Can't compare against a list of InputType as runtime type comparison is a bit tricky with binding generated enums if (!(inputType is InputType_Bolt11 ||