fix: some duplications and tags

This commit is contained in:
Mahyar Khanbolooki
2025-07-19 18:57:50 +03:30
parent 08a5640016
commit 902623e196
15 changed files with 291 additions and 323 deletions
+4 -1
View File
@@ -1,5 +1,6 @@
import { Metadata } from "next";
import "./globals.css";
import { ReactQueryProvider } from "@/components/providers/ReactQueryProvider";
export const metadata: Metadata = {
title: 'Dashboard',
@@ -19,7 +20,9 @@ export default function RootLayout({
dir="rtl"
className={`antialiased bg-background h-full`}
>
{children}
<ReactQueryProvider>
{children}
</ReactQueryProvider>
</body>
</html>
);