umami/src/app/(main)/settings/layout.tsx
Mike Cao 257050f749
Some checks failed
Create docker images / Build, push, and deploy (push) Has been cancelled
Node.js CI / build (postgresql, 18.18, 10) (push) Has been cancelled
Updated edit forms and icons.
2025-09-26 01:46:36 -07:00

17 lines
365 B
TypeScript

import { Metadata } from 'next';
import { SettingsLayout } from './SettingsLayout';
export default function ({ children }) {
if (process.env.cloudMode) {
//return null;
}
return <SettingsLayout>{children}</SettingsLayout>;
}
export const metadata: Metadata = {
title: {
template: '%s | Settings | Umami',
default: 'Settings | Umami',
},
};