diff --git a/src/components/views/voip/CallViewForRoom.tsx b/src/components/views/voip/CallViewForRoom.tsx index 3e225ccd95..0ef5e5b350 100644 --- a/src/components/views/voip/CallViewForRoom.tsx +++ b/src/components/views/voip/CallViewForRoom.tsx @@ -79,15 +79,15 @@ export default class CallViewForRoom extends React.Component { return call; } - onResizeStart = () => { + private onResizeStart = () => { this.props.resizeNotifier.startResizing(); } - onResize = () => { + private onResize = () => { this.props.resizeNotifier.notifyTimelineHeightChanged(); } - onResizeStop = () => { + private onResizeStop = () => { this.props.resizeNotifier.stopResizing(); }