Skip to content

Commit

Permalink
fixed ForgotPassordForm
Browse files Browse the repository at this point in the history
  • Loading branch information
BatuevIO committed Sep 14, 2024
1 parent ef858cd commit 4c2b479
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions src/components/ForgotPassordForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,18 @@ const emit = defineEmits<{
const submit = async () => {
const data = await AuthApi.requestResetForgottenPassword(email.value);
if (data) {
if (data.status == 'Success') {
toastStore.push({
title: 'Успех!',
description:
'Мы отправили письмо с инструкциями по восстановлению пароля на электронную почту',
});
emit('success');
}
if (data && data.status == 'Success') {
toastStore.push({
title: 'Успех!',
description:
'Мы отправили письмо с инструкциями по восстановлению пароля на электронную почту',
});
emit('success');
} else {
toastStore.push({
title: 'Что-то пошло не так',
description: 'Возможно, указана неверная электронная почта',
});
}
};
</script>
Expand Down

0 comments on commit 4c2b479

Please sign in to comment.