umami/src/app/(main)/settings/layout.tsx

10 lines
198 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
import SettingsLayout from './SettingsLayout';
2023-03-23 18:46:49 +00:00
2024-02-05 06:35:14 +00:00
export default function ({ children }) {
2024-02-15 06:13:13 +00:00
if (process.env.cloudMode) {
return null;
}
2024-02-06 07:59:33 +00:00
return <SettingsLayout>{children}</SettingsLayout>;
2023-03-23 18:46:49 +00:00
}