mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
Fixed 'use client' usage.
This commit is contained in:
parent
be5592446a
commit
f7151a880e
208 changed files with 323 additions and 385 deletions
|
|
@ -1,10 +1,9 @@
|
|||
'use client';
|
||||
import { ReactNode } from 'react';
|
||||
import { usePathname } from 'next/navigation';
|
||||
import SideNav from 'components/layout/SideNav';
|
||||
import styles from './SettingsLayout.module.css';
|
||||
import styles from './MenuLayout.module.css';
|
||||
|
||||
export function SettingsLayout({ items = [], children }: { items: any[]; children: ReactNode }) {
|
||||
export function MenuLayout({ items = [], children }: { items: any[]; children: ReactNode }) {
|
||||
const pathname = usePathname();
|
||||
const cloudMode = !!process.env.cloudMode;
|
||||
|
||||
|
|
@ -22,4 +21,4 @@ export function SettingsLayout({ items = [], children }: { items: any[]; childre
|
|||
);
|
||||
}
|
||||
|
||||
export default SettingsLayout;
|
||||
export default MenuLayout;
|
||||
|
|
@ -1,4 +1,3 @@
|
|||
'use client';
|
||||
import { ReactNode } from 'react';
|
||||
import classNames from 'classnames';
|
||||
import { Banner, Loading } from 'react-basics';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue