From 04d07d1dc9a153cfbb05d6aae58028bf3c876899 Mon Sep 17 00:00:00 2001 From: Igor Stuev <108066576+isstuev@users.noreply.github.com> Date: Fri, 13 Dec 2024 16:34:23 +0100 Subject: [PATCH] Update configs/app/features/pools.ts Co-authored-by: tom goriunov --- configs/app/features/pools.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/app/features/pools.ts b/configs/app/features/pools.ts index 75412a9583..ff652ae260 100644 --- a/configs/app/features/pools.ts +++ b/configs/app/features/pools.ts @@ -3,7 +3,7 @@ import type { Feature } from './types'; import { getEnvValue } from '../utils'; const contractInfoApiHost = getEnvValue('NEXT_PUBLIC_CONTRACT_INFO_API_HOST'); -const dexPoolsEnabled = getEnvValue('NEXT_PUBLIC_DEX_POOLS_ENABLED'); +const dexPoolsEnabled = getEnvValue('NEXT_PUBLIC_DEX_POOLS_ENABLED') === 'true'; const title = 'DEX pools';