Skip to content

Commit c5859af

Browse files
committed
Fix issue
1 parent 35af614 commit c5859af

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/libs/TransactionUtils/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -741,8 +741,7 @@ function getAttendees(transaction: OnyxInputOrEntry<Transaction>): Attendee[] {
741741
const creatorEmail = creatorDetails?.login ?? '';
742742
const creatorDisplayName = creatorDetails?.displayName ?? creatorEmail;
743743

744-
745-
if (!isCreatorAlreadyInAttendees && creatorEmail) {
744+
if (creatorEmail) {
746745
attendees.push({
747746
email: creatorEmail,
748747
login: creatorEmail,

0 commit comments

Comments
 (0)