Skip to content

Commit

Permalink
build fix for mode
Browse files Browse the repository at this point in the history
  • Loading branch information
vminkov committed Dec 31, 2023
1 parent 3bf74db commit c79215a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/ui/types/ChainMetaData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
ethereum,
ganache,
linea,
mode,
neon,
polygon,
zkevm
Expand Down Expand Up @@ -33,7 +34,8 @@ export const supportedChainIdToConfig: {
[chapel.chainId]: { enabled: true, supported: config.isDevelopment || config.isTestnetEnabled },
[ganache.chainId]: { enabled: config.isDevelopment, supported: config.isDevelopment },
[ethereum.chainId]: { enabled: true, supported: config.isEthereumEnabled },
[zkevm.chainId]: { enabled: true, supported: config.isZkevmEnabled }
[zkevm.chainId]: { enabled: true, supported: config.isZkevmEnabled },
[mode.chainId]: { enabled: true, supported: config.isModeEnabled }
};

export interface PoolsPerChain {
Expand Down

0 comments on commit c79215a

Please sign in to comment.