aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/app/providers.tsx
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswa Kalyan Bhuyan <biswa@surgot.in> 2025-04-25 01:09:30 +0530
committerLibravatarLibravatar Biswa Kalyan Bhuyan <biswa@surgot.in> 2025-04-25 01:09:30 +0530
commit8733795c8449f3514369d7b4220934760e386f1b (patch)
tree86b70bd897f22646df401f5e24e28bb35f3ca155 /frontend/src/app/providers.tsx
parent4cd8498ad30e6ea5f01e81346a81a2a1134864be (diff)
downloadfinance-8733795c8449f3514369d7b4220934760e386f1b.tar.gz
finance-8733795c8449f3514369d7b4220934760e386f1b.tar.bz2
finance-8733795c8449f3514369d7b4220934760e386f1b.zip
finance/frontend: fix: did some minor changes to the frontend
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