Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/views/Voting/CodeModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
v-bind="fields.email"
v-model="fields.email.value"
:disabled="isSubmitting"
v-if="!User.isAuthorized"
/>
<v-btn
block
Expand Down Expand Up @@ -180,7 +179,7 @@ export default {
return;
}
this.isSubmitting = true;
if (!this.fields.email.value && !this.User.isAuthorized) {
if (!this.fields.email.value) {
this.errorMessage = "You forgot to tell us your email";
this.showError = true;
this.isSubmitting = false;
Expand Down