TypingIndicator: Fix a dumb (#503)
Co-authored-by: Ven <vendicated@riseup.net>
This commit is contained in:
parent
9420735bc7
commit
3ca87848e5
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ function TypingIndicator({ channelId }: { channelId: string; }) {
|
|||
break;
|
||||
}
|
||||
case 3: {
|
||||
tooltipText = Formatters.Messages.THREE_USERS_TYPING.format({ a: getDisplayName(guildId, typingUsersArray[0]), b: getDisplayName(guildId, typingUsersArray[1]), c: getDisplayName(guildId, typingUsersArray[1]) });
|
||||
tooltipText = Formatters.Messages.THREE_USERS_TYPING.format({ a: getDisplayName(guildId, typingUsersArray[0]), b: getDisplayName(guildId, typingUsersArray[1]), c: getDisplayName(guildId, typingUsersArray[2]) });
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
|
|
Loading…
Reference in a new issue