Skip to content

Commit

Permalink
Run eslint lol
Browse files Browse the repository at this point in the history
  • Loading branch information
itzCozi committed Mar 26, 2024
1 parent 09e2fd4 commit 405db12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/player/atoms/NextEpisodeButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ export function NextEpisodeButton(props: {
}, [setDirectMeta, nextEp, meta, props, setShouldStartFromBeginning]);

useEffect(() => {
console.log(time, duration, "# 1")
console.log(time, duration, "# 1");

Check warning on line 84 in src/components/player/atoms/NextEpisodeButton.tsx

View workflow job for this annotation

GitHub Actions / Build project

Unexpected console statement

Check warning on line 84 in src/components/player/atoms/NextEpisodeButton.tsx

View workflow job for this annotation

GitHub Actions / Run Linters

Unexpected console statement
if (time >= duration && meta?.episode) {
console.log(time, duration, "# 2")
console.log(time, duration, "# 2");

Check warning on line 86 in src/components/player/atoms/NextEpisodeButton.tsx

View workflow job for this annotation

GitHub Actions / Build project

Unexpected console statement

Check warning on line 86 in src/components/player/atoms/NextEpisodeButton.tsx

View workflow job for this annotation

GitHub Actions / Run Linters

Unexpected console statement
}
}, [time, duration, meta, loadNextEpisode]);

Expand Down

0 comments on commit 405db12

Please sign in to comment.