@@ -8,7 +8,12 @@ export const getApiUrl = (): string => { } export const getIsNewDesignEnabled = (): boolean => { - return (getEnv()?.NEXT_PUBLIC_FF_NEW_DESIGN || process.env.NEXT_PUBLIC_FF_NEW_DESIGN) !== 'false' + const rawValue = getEnv()?.NEXT_PUBLIC_FF_NEW_DESIGN ?? process.env.NEXT_PUBLIC_FF_NEW_DESIGN + const enabled = rawValue === 'true' + + console.log('[NEXT_PUBLIC_FF_NEW_DESIGN]', { rawValue, enabled }) + + return enabled } export enum ModelPagesList {