From: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Date: Fri, 12 Aug 2022 10:33:56 +0000 (+0100) Subject: Fix grammar of read receipt text (#744) X-Git-Tag: v2.2.0~69 X-Git-Url: https://git.wafflesoft.org/?a=commitdiff_plain;h=af6995580179275f8969a6fec4f8ccc37bcc2a17;p=cinny.git Fix grammar of read receipt text (#744) 'other' should be plural in this context. --- diff --git a/src/app/organisms/room/common.jsx b/src/app/organisms/room/common.jsx index 12b9f2b..28974a8 100644 --- a/src/app/organisms/room/common.jsx +++ b/src/app/organisms/room/common.jsx @@ -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) {