From: Chris Duncan Date: Mon, 4 Nov 2024 16:05:53 +0000 (-0800) Subject: Fix missing const declaration. X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=e689c7770059297823630e8af25a17faa9bd334f;p=nemo-wallet.git Fix missing const declaration. --- diff --git a/nemo-wallet.html b/nemo-wallet.html index a6b554f..b9e4790 100644 --- a/nemo-wallet.html +++ b/nemo-wallet.html @@ -434,7 +434,7 @@ } async function loadAccounts () { - walletSelect = document.getElementById('wallet') + const walletSelect = document.getElementById('wallet') if (walletSelect?.value) { const accounts = await getFromStorage('accounts') const accountData = accounts.map(a => JSON.parse(a)).filter(a => {