mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 23:38:57 +01:00
Merge pull request #2382 from BlueWallet/amountlnd
FIX: Amount displayed on success invoice payment
This commit is contained in:
commit
75b08565a2
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ const ScanLndInvoice = () => {
|
|||
const [isLoading, setIsLoading] = useState(false);
|
||||
const [renderWalletSelectionButtonHidden, setRenderWalletSelectionButtonHidden] = useState(false);
|
||||
const [destination, setDestination] = useState('');
|
||||
const [unit, setUnit] = useState(wallet?.getPreferredBalanceUnit() || BitcoinUnit.SATS);
|
||||
const [unit, setUnit] = useState(BitcoinUnit.SATS);
|
||||
const [decoded, setDecoded] = useState();
|
||||
const [amount, setAmount] = useState();
|
||||
const [isAmountInitiallyEmpty, setIsAmountInitiallyEmpty] = useState();
|
||||
|
|
Loading…
Add table
Reference in a new issue