From 4b401b9e97d05c68188da75b7a52e5e8b9b50fd7 Mon Sep 17 00:00:00 2001 From: Igor Papandinas <26460174+ipapandinas@users.noreply.github.com> Date: Sat, 28 Sep 2024 15:16:19 +0200 Subject: [PATCH] fixes --- app/layout.tsx | 8 +------- app/providers.tsx | 7 ++++--- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 051524e..fbde2fb 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -93,13 +93,7 @@ export default function RootLayout({ > - +
diff --git a/app/providers.tsx b/app/providers.tsx index edd29bc..7386d94 100644 --- a/app/providers.tsx +++ b/app/providers.tsx @@ -11,16 +11,17 @@ import { queryClient } from "@/lib/react-query-client"; export interface ProvidersProps { children: React.ReactNode; - themeProps?: ThemeProviderProps; } -export function Providers({ children, themeProps }: ProvidersProps) { +export function Providers({ children }: ProvidersProps) { const router = useRouter(); return ( - {children} + + {children} +