diff --git a/src/app/(withAuth)/(dashboardLayout)/layout.js b/src/app/(withAuth)/(dashboardLayout)/layout.js
index 219cee2..181673f 100644
--- a/src/app/(withAuth)/(dashboardLayout)/layout.js
+++ b/src/app/(withAuth)/(dashboardLayout)/layout.js
@@ -1,13 +1,16 @@
import HeaderWithLogo from "@/components/layouts/dashboard/headerWithLogo";
import HeaderWithSidebar from "@/components/layouts/dashboard/headerWithSidebar";
import { Stack } from "@mui/material";
+import { SWRConfig } from "swr";
const Layout = ({ children }) => {
return (
-
-
- {children}
-
+ new Map() }}>
+
+
+ {children}
+
+
);
};
export default Layout;