fix(frontend): メールアドレス登録有効化時の「完了」ダイアログボックスの表示条件を修正
This commit is contained in:
parent
e0a83e9c9e
commit
d6e443f333
|
|
@ -278,7 +278,7 @@ async function onSubmit(): Promise<void> {
|
||||||
});
|
});
|
||||||
|
|
||||||
if (res) {
|
if (res) {
|
||||||
if (res.status === 204 || instance.emailRequiredForSignup) {
|
if (res.status === 204 && instance.emailRequiredForSignup) {
|
||||||
os.alert({
|
os.alert({
|
||||||
type: 'success',
|
type: 'success',
|
||||||
title: i18n.ts._signup.almostThere,
|
title: i18n.ts._signup.almostThere,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue