We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66a5b34 commit 289a745Copy full SHA for 289a745
shared/modules/selectors/networks.ts
@@ -145,9 +145,12 @@ export const getAllNetworkConfigurationsByCaipChainId = createSelector(
145
// We have this logic here to filter out non EVM test networks
146
// to properly handle this we should use the selector from
147
// multichain/networks.ts in the UI side
148
- const { nonEvmNetworks, nonEvmTestNetworks } = Object.keys(
149
- multichainNetworkConfigurationsByChainId,
150
- ).reduce(
+ const {
+ nonEvmNetworks,
+ ///: BEGIN:ONLY_INCLUDE_IF(build-flask)
151
+ nonEvmTestNetworks,
152
+ ///: END:ONLY_INCLUDE_IF
153
+ } = Object.keys(multichainNetworkConfigurationsByChainId).reduce(
154
(
155
result: {
156
nonEvmNetworks: Record<
0 commit comments