Skip to content

Commit

Permalink
Fix grammar of read receipt text (#744)
Browse files Browse the repository at this point in the history
'other' should be plural in this context.
  • Loading branch information
anoadragon453 authored Aug 12, 2022
1 parent 214d49f commit af69955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/organisms/room/common.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ function getUsersActionJsx(roomId, userIds, actionStr) {

const othersCount = userIds.length - MAX_VISIBLE_COUNT;
// eslint-disable-next-line react/jsx-one-expression-per-line
return <>{u1Jsx}, {u2Jsx}, {u3Jsx} and {othersCount} other are {actionStr}</>;
return <>{u1Jsx}, {u2Jsx}, {u3Jsx} and {othersCount} others are {actionStr}</>;
}

function parseTimelineChange(mEvent) {
Expand Down

0 comments on commit af69955

Please sign in to comment.