Compare commits

..

1 Commits

Author SHA1 Message Date
3413e696db fix: add missing TOKEN_BY_ADDRESS import in addressToken.js
All checks were successful
check / check (push) Successful in 21s
The import was missing, causing show() to crash with a
ReferenceError when navigating to the address-token view.
2026-02-27 12:41:26 -08:00

View File

@@ -11,7 +11,6 @@ const {
balanceLine,
} = require("./helpers");
const { state, currentAddress, saveState } = require("../../shared/state");
const { TOKEN_BY_ADDRESS } = require("../../shared/tokenList");
const {
formatUsd,
getPrice,
@@ -25,6 +24,7 @@ const { resolveEnsNames } = require("../../shared/ens");
const { updateSendBalance, renderSendTokenSelect } = require("./send");
const { log } = require("../../shared/log");
const makeBlockie = require("ethereum-blockies-base64");
const { TOKEN_BY_ADDRESS } = require("../../shared/tokenList");
let ctx;