feat(auth): add optional email to signup form

This commit is contained in:
2026-06-23 02:14:30 +03:30
parent 22b500dba5
commit edcd92f70d
6 changed files with 20 additions and 2 deletions

View File

@@ -35,6 +35,7 @@ interface SignupDetailsState {
confirmation: string
firstName: string
lastName: string
email: string
}
interface AuthFlowContextValue {
@@ -87,6 +88,7 @@ const defaultSignupDetails: SignupDetailsState = {
confirmation: "",
firstName: "",
lastName: "",
email: "",
}
const AuthFlowContext = createContext<AuthFlowContextValue | null>(null)