diff --git a/webui/src/app/layout.tsx b/webui/src/app/layout.tsx index 2ce62e90..91faca8d 100644 --- a/webui/src/app/layout.tsx +++ b/webui/src/app/layout.tsx @@ -6,19 +6,19 @@ import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "PAVI webUI pilot", - description: "Generated by create next app", - icons: "https://www.alliancegenome.org/favicon-16x16.png", + title: "PAVI webUI pilot", + description: "Generated by create next app", + icons: "https://www.alliancegenome.org/favicon-16x16.png", }; export default function RootLayout({ - children, + children, }: Readonly<{ - children: React.ReactNode; + children: React.ReactNode; }>) { - return ( - - {children} - - ); + return ( + + {children} + + ); }