main
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Has been cancelled

This commit is contained in:
Harun CAN
2026-03-30 00:22:06 +03:00
parent 45a540c530
commit 8bd995ea18
44 changed files with 3721 additions and 11852 deletions
+2 -1
View File
@@ -3,6 +3,7 @@
import { SessionProvider } from "next-auth/react";
import { ThemeProvider } from "next-themes";
import ReactQueryProvider from "@/provider/react-query-provider";
import { ToastProvider } from "@/components/ui/toast";
export function Provider({ children }: { children: React.ReactNode }) {
return (
@@ -14,7 +15,7 @@ export function Provider({ children }: { children: React.ReactNode }) {
enableSystem={false}
disableTransitionOnChange
>
{children}
<ToastProvider>{children}</ToastProvider>
</ThemeProvider>
</ReactQueryProvider>
</SessionProvider>