Skip to content

Commit

Permalink
Merge pull request #385 from aura-nw/dev
Browse files Browse the repository at this point in the history
fix list token
  • Loading branch information
hoangndm3139 authored Apr 2, 2024
2 parents f1826a9 + 5ec3c48 commit 947e12d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/Assets/Tokens/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ function Tokens(props): ReactElement {
const safeTokens: any = useSelector(extendedSafeTokensSelector)
const { name: safeName, address, isHideZeroBalance, coinConfig: coinConfigState } = useSelector(currentSafeWithNames)
const [hideZeroBalance, setHideZeroBalance] = useState(isHideZeroBalance)
const coinConfig = loadFromLocalStorage(LS_TOKEN_CONFIG) as any[]
const coinConfigStorage = loadFromLocalStorage(LS_TOKEN_CONFIG) as any[]
const coinConfig = coinConfigStorage ?? coinConfigState
const { onShow, onHide, safeActionsState } = useSafeActions()
const safeAddress = extractSafeAddress()

Expand Down

0 comments on commit 947e12d

Please sign in to comment.