Skip to content

Commit

Permalink
Merge pull request #19752 from Scroody/fix-meeting-ended-by-name
Browse files Browse the repository at this point in the history
Fix: Ended meeting with wrong name
  • Loading branch information
ramonlsouza committed Mar 7, 2024
2 parents 16a4690 + fb25ed0 commit 1d2fee1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ const PresenceManagerContainer: React.FC<PresenceManagerContainerProps> = ({ chi
joinErrorMessage={joinErrorMessage}
meetingEnded={meeting.ended}
endedReasonCode={meeting.endedReasonCode}
endedBy={meeting.endedBy}
endedBy={meeting.endedByUserName}
ejectReasonCode={ejectReasonCode}
bannerColor={bannerColor}
bannerText={bannerText}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface GetUserCurrentResponse {
meeting: {
ended: boolean;
endedReasonCode: string;
endedBy: string;
endedByUserName: string;
};
}>;
}
Expand Down Expand Up @@ -60,7 +60,7 @@ subscription getUserCurrent {
meeting {
ended
endedReasonCode
endedBy
endedByUserName
}
}
}
Expand Down

0 comments on commit 1d2fee1

Please sign in to comment.