Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix typing tile duplicating users (#10678)
Browse files Browse the repository at this point in the history
  • Loading branch information
t3chguy committed Apr 20, 2023
1 parent 467c52a commit 0d9fa05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/rooms/WhoIsTypingTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export default class WhoIsTypingTile extends React.Component<IProps, IState> {
}

public render(): React.ReactNode {
const usersTyping = this.state.usersTyping;
const usersTyping = [...this.state.usersTyping];
// append the users that have been reported not typing anymore
// but have a timeout timer running so they can disappear
// when a message comes in
Expand Down

0 comments on commit 0d9fa05

Please sign in to comment.