MCPcopy Create free account
hub / github.com/Hazrat-Ali9/Problem-Solving-Frontend / signIn

Function signIn

lib/firebase/authService.ts:57–64  ·  view source on GitHub ↗
(email: string, password: string)

Source from the content-addressed store, hash-verified

55
56// ✅ Sign In
57export const signIn = async (email: string, password: string) => {
58 try {
59 return await signInWithEmailAndPassword(auth, email, password);
60 } catch (error) {
61 const errorCode = (error as { code: string }).code;
62 throw new Error(errorCode);
63 }
64};
65
66// ✅ Forgot Password
67export const forgotPassword = async (email: string) => {

Callers 1

handleLoginFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected