From eda6cff5d6490ece672cb10f753461fdd25b7bd7 Mon Sep 17 00:00:00 2001 From: Kristof Csillag Date: Tue, 14 Jan 2025 01:50:26 +0100 Subject: [PATCH] Update config: merge networks in layer selector --- src/app/utils/route-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/utils/route-utils.ts b/src/app/utils/route-utils.ts index da7baaadff..5f71a7c7c6 100644 --- a/src/app/utils/route-utils.ts +++ b/src/app/utils/route-utils.ts @@ -79,7 +79,7 @@ export const hiddenScopes: SearchScope[] = [ // { network: Network.mainnet, layer: Layer.sapphire }, // This is only for testing ] -export const mergeNetworksInLayerSelector = false +export const mergeNetworksInLayerSelector = true export const isScopeHidden = (scope: SearchScope): boolean => !!hiddenScopes.find(s => s.network === scope.network && s.layer === scope.layer)