Skip to content

Commit

Permalink
fix: skip forwards button (#23076)
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra authored Jun 19, 2024
1 parent 2ab8495 commit dbe5df9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function SeekSkip({ direction }: { direction: 'forward' | 'backward' }):
<LemonButton
data-attr={`seek-skip-${direction}`}
size="small"
onClick={() => (direction === 'forward' ? seekForward : seekBackward())}
onClick={() => (direction === 'forward' ? seekForward() : seekBackward())}
>
<div className="PlayerControlSeekIcon">
<span className="PlayerControlSeekIcon__seconds">{jumpTimeSeconds}</span>
Expand Down

0 comments on commit dbe5df9

Please sign in to comment.