Updated cloud mode checks.

This commit is contained in:
Mike Cao 2025-09-22 13:09:07 -07:00
parent d8075764e2
commit 9897c725de
16 changed files with 23 additions and 81 deletions

View file

@ -2,7 +2,7 @@ import { Metadata } from 'next';
import { SettingsLayout } from './SettingsLayout';
export default function ({ children }) {
if (process.env.cloudUrl) {
if (process.env.cloudMode) {
return null;
}