Skip to content

Commit

Permalink
fix: Ignore existing attendee without email in search results
Browse files Browse the repository at this point in the history
  • Loading branch information
jackyw-1183 authored and backportbot[bot] committed Jul 31, 2024
1 parent edc77d8 commit 7a4e198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Editor/Invitees/InviteesListSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export default {
name = email
}
if (this.alreadyInvitedEmails.includes(email)) {
if (email && this.alreadyInvitedEmails.includes(email)) {
return
}
Expand Down

0 comments on commit 7a4e198

Please sign in to comment.