Improve login error message

Update the login error message to be more specific when authentication fails due to incorrect email or password.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 16:08:01 +00:00
parent 68a4d93426
commit d3d746c9ef
3 changed files with 114 additions and 209 deletions

View File

@@ -1,4 +1,9 @@
import { AuthProvider, useAuth } from '@/contexts/auth';
import React from 'react';
import { AuthProvider, useAuth } from './auth/AuthProvider';
export { AuthProvider, useAuth };
export default function AuthContextWrapper({ children }: { children: React.ReactNode }) {
return <AuthProvider>{children}</AuthProvider>;
}