From be84cc1717f86cc379aff01baf313d71c3a9ea16 Mon Sep 17 00:00:00 2001 From: Jesse Snyder Date: Mon, 28 Oct 2024 14:14:10 -0600 Subject: [PATCH] memo not helping here --- web/src/config/contexts/ConfigContext.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/web/src/config/contexts/ConfigContext.tsx b/web/src/config/contexts/ConfigContext.tsx index 4cddbba..0f1d203 100644 --- a/web/src/config/contexts/ConfigContext.tsx +++ b/web/src/config/contexts/ConfigContext.tsx @@ -24,10 +24,7 @@ type ConfigContextProps = { export const ConfigContextProvider: React.FC = ({ children, }) => { - const { evm: evmChains, ibc: ibcChains } = useMemo(() => { - return getEnvChainConfigs(); - }, []); - + const { evm: evmChains, ibc: ibcChains } = getEnvChainConfigs(); const brandURL = getEnvVariable("REACT_APP_BRAND_URL"); const bridgeURL = getEnvVariable("REACT_APP_BRIDGE_URL"); const swapURL = getEnvVariable("REACT_APP_SWAP_URL");