diff --git a/apps/settings/src/components/PersonalInfo/EmailSection/Email.vue b/apps/settings/src/components/PersonalInfo/EmailSection/Email.vue index 2c6d34b44f3..faca83821e2 100644 --- a/apps/settings/src/components/PersonalInfo/EmailSection/Email.vue +++ b/apps/settings/src/components/PersonalInfo/EmailSection/Email.vue @@ -150,7 +150,7 @@ export default { }, mounted() { - if (this.initialEmail === '') { + if (!this.primary && this.initialEmail === '') { this.$nextTick(() => this.$refs.email?.focus()) } },