Skip to content

Commit 289a745

Browse files
committed
fix: assigned nonEvmTestNetworks but never used
1 parent 66a5b34 commit 289a745

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

shared/modules/selectors/networks.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,12 @@ export const getAllNetworkConfigurationsByCaipChainId = createSelector(
145145
// We have this logic here to filter out non EVM test networks
146146
// to properly handle this we should use the selector from
147147
// multichain/networks.ts in the UI side
148-
const { nonEvmNetworks, nonEvmTestNetworks } = Object.keys(
149-
multichainNetworkConfigurationsByChainId,
150-
).reduce(
148+
const {
149+
nonEvmNetworks,
150+
///: BEGIN:ONLY_INCLUDE_IF(build-flask)
151+
nonEvmTestNetworks,
152+
///: END:ONLY_INCLUDE_IF
153+
} = Object.keys(multichainNetworkConfigurationsByChainId).reduce(
151154
(
152155
result: {
153156
nonEvmNetworks: Record<

0 commit comments

Comments
 (0)