Merge pull request #744 from cake-tech/qr-scheme-fix

Qr scheme fix
This commit is contained in:
Omar Hatem 2023-01-25 18:35:13 +02:00 committed by GitHub
commit db72849bfd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -180,7 +180,8 @@ abstract class SendViewModelBase with Store {
WalletType get walletType => _wallet.type;
String? get walletCurrencyName => _wallet.currency.name?.toLowerCase();
String? get walletCurrencyName =>
_wallet.currency.fullName?.toLowerCase() ?? _wallet.currency.name;
bool get hasCurrecyChanger => walletType == WalletType.haven;