-
- +
+ {isRecording && ( { ); } - private handleHoverActions() { - if (this.state.isRecording && !this.state.actionHover) { - this.setState({ - actionHover: true, - }); - } - } - private async timerUpdate() { const { nowTimestamp, startTimestamp } = this.state; const elapsedTime = nowTimestamp - startTimestamp; @@ -225,14 +212,6 @@ class SessionRecordingInner extends React.Component { }); } - private handleUnhoverActions() { - if (this.state.isRecording && this.state.actionHover) { - this.setState({ - actionHover: false, - }); - } - } - private stopRecordingState() { this.setState({ isRecording: false,