Add semicolons

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-03-22 07:44:37 +01:00
parent b257c25c2c
commit 9a2036c212
No known key found for this signature in database
GPG key ID: 9760693FDD98A790

View file

@ -81,15 +81,15 @@ export default class CallViewForRoom extends React.Component<IProps, IState> {
private onResizeStart = () => {
this.props.resizeNotifier.startResizing();
}
};
private onResize = () => {
this.props.resizeNotifier.notifyTimelineHeightChanged();
}
};
private onResizeStop = () => {
this.props.resizeNotifier.stopResizing();
}
};
public render() {
if (!this.state.call) return null;