diff --git a/ee/tabby-ui/app/(dashboard)/layout.tsx b/ee/tabby-ui/app/(dashboard)/layout.tsx index cafd302..3a3551c 100644 --- a/ee/tabby-ui/app/(dashboard)/layout.tsx +++ b/ee/tabby-ui/app/(dashboard)/layout.tsx @@ -1,5 +1,6 @@ import { Metadata } from 'next' import Sidebar from './components/sidebar' +import { Header } from '@/components/header' export const metadata: Metadata = { title: 'Dashboard' @@ -10,5 +11,10 @@ interface DashboardLayoutProps { } export default function RootLayout({ children }: DashboardLayoutProps) { - return {children} + return <> + + + {children} + + > } diff --git a/ee/tabby-ui/app/layout.tsx b/ee/tabby-ui/app/layout.tsx index 5e9d258..8942821 100644 --- a/ee/tabby-ui/app/layout.tsx +++ b/ee/tabby-ui/app/layout.tsx @@ -39,8 +39,7 @@ export default function RootLayout({ children }: RootLayoutProps) { - - {children} + {children}