setIsVerifying(true);
const formData = new FormData();
formData.append("code", values.code);
formData.append("flow", "email-verification");
formData.append("email", step.email);
console.log(formData); // Inspect contents properly
await signIn("password", formData);
this is a json of the formData when confirming the email verification
[
[
"code",
"097367"
],
[
"flow",
"email-verification"
],
[
"email",
"[email protected]"
]
]