Skip to content

Commit

Permalink
fix(linter): update types
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane committed Oct 25, 2023
1 parent f62c982 commit 5da01c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PlayerAudio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const PlayerAudio = memo(() => {
}));
};

const handleVolumeChanged = (event: any) => {
const handleVolumeChanged = (event: Event) => {
setPlayerState((previousState) => ({
...previousState,
volume: (event.target as HTMLAudioElement).volume,
Expand Down

0 comments on commit 5da01c3

Please sign in to comment.