Skip to content

Commit

Permalink
Fix: data collecting error
Browse files Browse the repository at this point in the history
  • Loading branch information
bartosz-skejcik committed Dec 22, 2023
1 parent 8398ac7 commit 72511c1
Show file tree
Hide file tree
Showing 3 changed files with 232 additions and 227 deletions.
12 changes: 4 additions & 8 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ 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 @@ -31,12 +29,10 @@ export default function RootLayout({
return (
<html lang="pl">
<AuthProvider>
<EdgeStoreProvider>
<body>
{children}
<ToastContainer />
</body>
</EdgeStoreProvider>
<body>
{children}
<ToastContainer />
</body>
</AuthProvider>
</html>
);
Expand Down
Loading

0 comments on commit 72511c1

Please sign in to comment.