Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit 527a536

Browse files
Manuel Proßizzyyhh
authored andcommitted
fix(web): read session provider which was accidentally removed due to solving merge conflicts
1 parent 8841b8c commit 527a536

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web/src/app/layout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Fira_Code } from "next/font/google";
2+
import { getServerSession } from "next-auth";
23
import type { Metadata } from "next";
34
import "../styles/globals.scss";
45
import qs from "qs";
@@ -45,7 +46,7 @@ export default async function RootLayout({ children }: { children: React.ReactNo
4546

4647
return (
4748
<html lang="en">
48-
<body className={inter.className}>
49+
<body className={firaCode.className}>
4950
{pageProps && (
5051
<Layout pages={pageProps}>
5152
<SessionProvider session={session}>{children}</SessionProvider>

0 commit comments

Comments
 (0)