diff --git a/src/core/configuration/PreprodConfig.ts b/src/core/configuration/PreprodConfig.ts index a0567aaa9..31fd80e8f 100644 --- a/src/core/configuration/PreprodConfig.ts +++ b/src/core/configuration/PreprodConfig.ts @@ -12,8 +12,12 @@ export const preprodConfig = new (class extends DefaultServerConfig { return "openfront.dev"; } allowedFlares(): string[] | undefined { - return [ - // "access:openfront.dev" - ]; + return undefined; + // TODO: Uncomment this after testing. + // Allow access without login for now to test + // the new login flow. + // return [ + // // "access:openfront.dev" + // ]; } })();