Update the login error message to be more specific when authentication fails due to incorrect email or password.
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
|
|
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>;
|
|
}
|