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

Fix typing tile duplicating users #10678

Merged
merged 1 commit into from
Apr 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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