Skip to content

Commit

Permalink
fixes frontend checks
Browse files Browse the repository at this point in the history
  • Loading branch information
BonomoAlessandro committed Nov 22, 2024
1 parent b6086b3 commit 2b5fbfc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
import { enabledNetworkTokens } from '$lib/derived/network-tokens.derived';
import { testnetsEnabled } from '$lib/derived/settings.derived';
import { i18n } from '$lib/stores/i18n.store';
import type { TokenUi } from '$lib/types/token';
import { replacePlaceholders } from '$lib/utils/i18n.utils.js';
let enabledTokensWithoutCanister: Token[];
$: enabledTokensWithoutCanister = $enabledNetworkTokens.filter(
(token: Token) => $icTransactionsStore?.[token.id] === null
(token: TokenUi) => $icTransactionsStore?.[token.id] === null
);
let tokenList: string;
Expand Down

0 comments on commit 2b5fbfc

Please sign in to comment.