feat(auth): add optional email to signup form
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user