mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
Fix typing tile duplicating users (#10678)
This commit is contained in:
parent
467c52a2ae
commit
0d9fa0515d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue