From 647fee26e6637f0e46945b0555173f241f4278c1 Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Wed, 21 Sep 2022 16:23:27 +0530 Subject: [PATCH] bug fix --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 481f1ed..bf97acc 100644 --- a/index.html +++ b/index.html @@ -1470,7 +1470,7 @@ if (!getRef('receiver_container').children.length) { receiverCard.querySelector('.remove-card').remove() } - receiverCard.querySelector('.currency-symbol').innerHTML = currencyIcons[getRef('currency_selector').value] + receiverCard.querySelector('.currency-symbol') ? receiverCard.querySelector('.currency-symbol').innerHTML = currencyIcons[getRef('currency_selector').value] : null; getRef('receiver_container').appendChild(receiverCard); getRef('receiver_container').querySelectorAll('sm-input[data-btc-address]').forEach(input => input.customValidation = btc_api.validateAddress) }