Skip to content

Commit

Permalink
[JS] Linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BreadJS committed Jul 9, 2023
1 parent c04d17f commit bd50d67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,14 +406,14 @@ export function toggleTestnet() {
doms.domGuiBalanceStakingTicker.innerText = cChainParams.current.TICKER;
doms.domPrefixNetwork.innerText =
cChainParams.current.PUBKEY_PREFIX.join(' or ');

// Update testnet toggle in settings
if(cChainParams.current.isTestnet) {
if (cChainParams.current.isTestnet) {
doms.domTesnetToggler.checked = true;
} else {
doms.domTesnetToggler.checked = false;
}

fillExplorerSelect();
fillNodeSelect();
getBalance(true);
Expand Down

0 comments on commit bd50d67

Please sign in to comment.