Refactor AuthContext into smaller files

Refactors the AuthContext.tsx file into smaller, more manageable files to improve code organization and maintainability. The functionality remains the same.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 06:57:27 +00:00
parent ad597b281d
commit fd34c62170
13 changed files with 244 additions and 228 deletions

View File

@@ -0,0 +1,5 @@
import { useToast as useOriginalToast, toast as originalToast } from '@/hooks/use-toast';
export const useToast = useOriginalToast;
export const toast = originalToast;