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
+3 -7
View File
@@ -1,5 +1,3 @@
import { ReactQueryProvider } from '@/components/providers/ReactQueryProvider'
import { Metadata } from 'next'
export const metadata: Metadata = {
@@ -8,10 +6,8 @@ export const metadata: Metadata = {
export default function AuthLayout({ children }: { children: React.ReactNode }) {
return (
<ReactQueryProvider>
<div className="h-full">
{children}
</div>
</ReactQueryProvider>
<main className="h-full">
{children}
</main>
)
}