mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-23 19:16:09 +00:00
Fix fill data condition
This commit is contained in:
parent
826ae46b07
commit
30ef231d24
1 changed files with 1 additions and 1 deletions
|
@ -640,7 +640,7 @@ class SendCardState extends State<SendCard>
|
||||||
});
|
});
|
||||||
|
|
||||||
if (initialPaymentRequest != null &&
|
if (initialPaymentRequest != null &&
|
||||||
sendViewModel.walletCurrencyName != initialPaymentRequest!.scheme.toLowerCase()) {
|
sendViewModel.walletCurrencyName == initialPaymentRequest!.scheme.toLowerCase()) {
|
||||||
addressController.text = initialPaymentRequest!.address;
|
addressController.text = initialPaymentRequest!.address;
|
||||||
cryptoAmountController.text = initialPaymentRequest!.amount;
|
cryptoAmountController.text = initialPaymentRequest!.amount;
|
||||||
noteController.text = initialPaymentRequest!.note;
|
noteController.text = initialPaymentRequest!.note;
|
||||||
|
|
Loading…
Reference in a new issue