Closed shinshinshin123 closed 1 year ago
const handleSignup = async (e:any) => {
e.preventDefault();
setIsLoading(true);
try {
const { email, password, userName } = formData;
const { user } = await auth.createUserWithEmailAndPassword(email, password);
await user.updateProfile({ userName });
router.push('/')
} catch (error) {
console.error(error);
} finally {
setIsLoading(false);
}
};
のcreateUserWithEmailAndPassword
の部分でエラーを吐いているので新規登録することができないでいる。
/signup
画面パーツ ・IDパスワード入力欄 ・ユーザー名入力欄 ・新規登録ボタン
・ログインはこちら
機能 ・ユーザー登録
データ ・メールアドレス ・パスワード(半角英数8文字以上) ・Googleアカウント