From fbd1cdfbaceee148dced7efac0d7ad11e357bf80 Mon Sep 17 00:00:00 2001 From: Theodore Li Date: Fri, 13 Feb 2026 22:34:01 -0800 Subject: [PATCH] Fix spacing --- apps/sim/lib/core/config/feature-flags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/lib/core/config/feature-flags.ts b/apps/sim/lib/core/config/feature-flags.ts index a8a1352a2..9f746c5b1 100644 --- a/apps/sim/lib/core/config/feature-flags.ts +++ b/apps/sim/lib/core/config/feature-flags.ts @@ -21,7 +21,7 @@ export const isTest = env.NODE_ENV === 'test' /** * Is this the hosted version of the application */ -export const isHosted = +export const isHosted = getEnv('NEXT_PUBLIC_APP_URL') === 'https://www.sim.ai' || getEnv('NEXT_PUBLIC_APP_URL') === 'https://www.staging.sim.ai'