Skip to content

Commit

Permalink
Fix missing <body> warn (#8)
Browse files Browse the repository at this point in the history
when loading the app there is a warning saying:

the following tags are missing in the root layout: <body>

this update fix the warning
  • Loading branch information
marciob authored Dec 20, 2024
1 parent e37a93c commit 2c91e04
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,15 @@ export default function RootLayout({
);
return (
<html lang="en">
<NextAuthProvider>
<ErudaProvider>
<MiniKitProvider>
<body className={inter.className}>{children}</body>
</MiniKitProvider>
</ErudaProvider>
</NextAuthProvider>
<body className={inter.className}>
<NextAuthProvider>
<ErudaProvider>
<MiniKitProvider>
{children}
</MiniKitProvider>
</ErudaProvider>
</NextAuthProvider>
</body>
</html>
);
}

0 comments on commit 2c91e04

Please sign in to comment.