Skip to content

Commit

Permalink
asd
Browse files Browse the repository at this point in the history
  • Loading branch information
bartosz-skejcik committed Dec 22, 2023
1 parent 0f83a78 commit 5633840
Show file tree
Hide file tree
Showing 2 changed files with 226 additions and 228 deletions.
12 changes: 8 additions & 4 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import type { Metadata } from "next";
import "@/app/tailwind.css";
import AuthProvider from "@/context/AuthProvider";

import { EdgeStoreProvider } from "@/lib/edgestore";

import { ToastContainer } from "react-toastify";

import "react-toastify/dist/ReactToastify.css";
Expand All @@ -29,10 +31,12 @@ export default function RootLayout({
return (
<html lang="pl">
<AuthProvider>
<body>
{children}
<ToastContainer />
</body>
<EdgeStoreProvider>
<body>
{children}
<ToastContainer />
</body>
</EdgeStoreProvider>
</AuthProvider>
</html>
);
Expand Down
Loading

0 comments on commit 5633840

Please sign in to comment.