Fix init value

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-09-13 18:14:55 +02:00
parent 1590fe32cf
commit e4cf7314f5
No known key found for this signature in database
GPG Key ID: 55C211A1226CB17D
1 changed files with 1 additions and 1 deletions
src/components/structures

View File

@ -43,7 +43,7 @@ interface IState {
export default class EmbeddedPage extends React.PureComponent<IProps, IState> {
public static contextType = MatrixClientContext;
private unmounted = true;
private unmounted = false;
private dispatcherRef: string;
constructor(props: IProps, context: typeof MatrixClientContext) {