Skip to content

Commit

Permalink
Update seekbar.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
yambenari24 committed Feb 9, 2025
1 parent 8c70cd2 commit 53736c6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/seekbar/seekbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,7 @@ class SeekBar extends Component<any, any> {
componentWillUnmount(): void {
document.removeEventListener('mouseup', this.onPlayerMouseUp);
document.removeEventListener('mousemove', this.onPlayerMouseMove);
//window.removeEventListener('updateSeekBar', this.updateSeekBarClientRect);
this.props.eventManager.unlisten(window, 'bottomBarClientRectChanged', this.updateSeekBarClientRect);

Check failure on line 142 in src/components/seekbar/seekbar.tsx

View workflow job for this annotation

GitHub Actions / build-types / running-tests (ubuntu-latest)

Property 'updateSeekBarClientRect' does not exist on type 'SeekBar'. Did you mean 'handleUpdateSeekBarClientRect'?

Check failure on line 142 in src/components/seekbar/seekbar.tsx

View workflow job for this annotation

GitHub Actions / type-check / running-tests (ubuntu-latest)

Property 'updateSeekBarClientRect' does not exist on type 'SeekBar'. Did you mean 'handleUpdateSeekBarClientRect'?
// this.props.eventManager?.unlisten(document, 'click', this._closePupup);
}

/**
Expand Down

0 comments on commit 53736c6

Please sign in to comment.