Fix EventTile typing

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-07-17 15:28:02 +02:00
parent e3eac48d05
commit 7b45efc9e9
No known key found for this signature in database
GPG Key ID: CC823428E9B582FB
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ export default class EventTile extends React.Component<IProps, IState> {
private suppressReadReceiptAnimation: boolean;
private isListeningForReceipts: boolean;
private tile = React.createRef();
private replyThread = React.createRef();
private replyThread = React.createRef<ReplyThread>();
public readonly ref = createRef<HTMLElement>();