diff --git a/apps/blogai/app/[locale]/auth/sign-up/email-code.tsx b/apps/blogai/app/[locale]/auth/sign-up/email-code.tsx index 84c51f9..9685290 100644 --- a/apps/blogai/app/[locale]/auth/sign-up/email-code.tsx +++ b/apps/blogai/app/[locale]/auth/sign-up/email-code.tsx @@ -22,38 +22,16 @@ type Props = { export const EmailCode: React.FC = ({ setError, emailValue, passwordValue }) => { const router = useRouter(); const { t } = useTranslation(); - // const { signUp, isLoaded: signUpLoaded, setActive } = useSignUp(); const [isLoading, setIsLoading] = React.useState(false); const [_timeLeft, _setTimeLeft] = React.useState(0); const verifyCode = async (otp: string) => { - // if (!signUpLoaded || typeof otp !== "string") { - // return null; - // } console.log("verifyCode", otp, passwordValue, - // typeof passwordValue, md5(passwordValue), passwordValue === '123456' ) setIsLoading(true); - // await signUp - // .attemptEmailAddressVerification({ - // code: otp, - // }) - // .then((result) => { - // if (result.status === "complete" && result.createdSessionId) { - // setActive({ session: result.createdSessionId }).then(() => { - // router.push("/new"); - // }); - // } - // }) - // .catch((err) => { - // setIsLoading(false); - // setError(err.errors.at(0)?.longMessage ?? "Unknown error, pleae contact support@unkey.dev"); - // }); - // debug - // otp = "88888888" await service.post('/api/v1/customer/register', { user_name: emailValue, @@ -74,8 +52,6 @@ export const EmailCode: React.FC = ({ setError, emailValue, passwordValue toast.success(result.header.message) router.push("/auth/sign-in"); - - // 自身方法 // localStorage.setItem("data", JSON.stringify(result.data)); // []方法 @@ -84,12 +60,7 @@ export const EmailCode: React.FC = ({ setError, emailValue, passwordValue }).catch((err: any) => { setIsLoading(false); console.log(err); - // if (err.errors[0].code === "form_identifier_not_found") { - // props.setAccountNotFound(true); - // props.email(email); - // } else { - // props.setError("Sorry, We couldn't sign you in. Please try again later"); - // } + }); }; @@ -112,21 +83,9 @@ export const EmailCode: React.FC = ({ setError, emailValue, passwordValue toast.success(result.header.message) - - // 自身方法 - // localStorage.setItem("data", JSON.stringify(result.data)); - // []方法 - { {/* localStorage["name"]="bonly"; */ } } - }).catch((err: any) => { setIsLoading(false); console.log(err); - // if (err.errors[0].code === "form_identifier_not_found") { - // props.setAccountNotFound(true); - // props.email(email); - // } else { - // props.setError("Sorry, We couldn't sign you in. Please try again later"); - // } }); } catch (error) { setIsLoading(false); @@ -156,27 +115,14 @@ export const EmailCode: React.FC = ({ setError, emailValue, passwordValue render={({ slots }) => (
{slots.slice(0, 3).map((slot, idx) => ( - // biome-ignore lint/suspicious/noArrayIndexKey: I have nothing better ))} - {/* */} {slots.slice(3).map((slot, idx) => ( - // biome-ignore lint/suspicious/noArrayIndexKey: I have nothing better ))}
)} /> - - {/* */}