diff --git a/components/firebase/Email.vue b/components/firebase/Email.vue index b36cb72da..563f04dfa 100644 --- a/components/firebase/Email.vue +++ b/components/firebase/Email.vue @@ -99,7 +99,8 @@ export default { .signInWithEmail(this.form.email, actionCodeSettings) .then(() => { this.$toast.success("Check your inbox", { - icon: "person", + icon: "email", + duration: 0, }) window.localStorage.setItem("emailForSignIn", this.form.email) }) @@ -114,6 +115,7 @@ export default { }) }, hideModal() { + this.$toast.clear() this.$emit("hide-modal") }, },