From 9a2036c212a7a3bc980315618e7a764a4afdab64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Mon, 22 Mar 2021 07:44:37 +0100 Subject: [PATCH] Add semicolons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/components/views/voip/CallViewForRoom.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/views/voip/CallViewForRoom.tsx b/src/components/views/voip/CallViewForRoom.tsx index 0ef5e5b350..878b6af20f 100644 --- a/src/components/views/voip/CallViewForRoom.tsx +++ b/src/components/views/voip/CallViewForRoom.tsx @@ -81,15 +81,15 @@ export default class CallViewForRoom extends React.Component { 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;