aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/app/providers.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/app/providers.tsx')
-rw-r--r--frontend/src/app/providers.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/frontend/src/app/providers.tsx b/frontend/src/app/providers.tsx
index efedc0b..40ce3a9 100644
--- a/frontend/src/app/providers.tsx
+++ b/frontend/src/app/providers.tsx
@@ -2,6 +2,7 @@
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { ReactNode, useState } from 'react';
+import { AuthProvider } from '@/components/shared/AuthContext';
interface ProvidersProps {
children: ReactNode;
@@ -19,7 +20,9 @@ export function Providers({ children }: ProvidersProps) {
return (
<QueryClientProvider client={queryClient}>
- {children}
+ <AuthProvider>
+ {children}
+ </AuthProvider>
</QueryClientProvider>
);
} \ No newline at end of file