Skip to content

Commit

Permalink
fixes build
Browse files Browse the repository at this point in the history
  • Loading branch information
hkirat committed Feb 4, 2024
1 parent d7dfe6e commit 72516ac
Show file tree
Hide file tree
Showing 2 changed files with 3,817 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/VideoPlayer2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const VideoPlayer: FunctionComponent<VideoPlayerProps> = ({
if (!player) {
return;
}
let volumeSetTimeout;
let volumeSetTimeout: ReturnType<typeof setInterval> | null = null;
const handleKeyPress = (event: any) => {
const isShiftPressed = event.shiftKey;
if (isShiftPressed) {
Expand Down
Loading

0 comments on commit 72516ac

Please sign in to comment.