We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efef498 commit 2a0bbe0Copy full SHA for 2a0bbe0
lib/src/screens/send/widgets/send_card.dart
@@ -275,7 +275,9 @@ class SendCardState extends State<SendCard> with AutomaticKeepAliveClientMixin<S
275
sendViewModel.payjoinUri = paymentRequest.pjUri;
276
}
277
addressController.text = paymentRequest.address;
278
- cryptoAmountController.text = paymentRequest.amount;
+ if (paymentRequest.amount.isNotEmpty) {
279
+ cryptoAmountController.text = paymentRequest.amount;
280
+ }
281
noteController.text = paymentRequest.note;
282
283
0 commit comments