Files
zellyy-finance/src/hooks/useToast.wrapper.ts
gpt-engineer-app[bot] fd34c62170 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.
2025-03-15 06:57:27 +00:00

6 lines
170 B
TypeScript

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