Skip to content

Commit

Permalink
Merge pull request #54454 from nkdengineer/fix/53773
Browse files Browse the repository at this point in the history
fix: strange next steps message format
  • Loading branch information
mjasikowski authored Feb 7, 2025
2 parents 6842b46 + 0ae0361 commit e7b38b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/NextStepUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function parseMessage(messages: Message[] | undefined) {

if (currentUserEmail === part.text || part.clickToCopyText === currentUserEmail) {
tagType = 'strong';
content = nextPart?.text === `'s` ? 'Your' : 'You';
content = nextPart?.text === `'s` ? 'your' : 'you';
} else if (part.text === `'s` && (previousPart?.text === currentUserEmail || previousPart?.clickToCopyText === currentUserEmail)) {
content = '';
} else if (isEmail) {
Expand Down

0 comments on commit e7b38b9

Please sign in to comment.