diff --git a/src/components/player/atoms/NextEpisodeButton.tsx b/src/components/player/atoms/NextEpisodeButton.tsx index a1f857a6..f00ba6e3 100644 --- a/src/components/player/atoms/NextEpisodeButton.tsx +++ b/src/components/player/atoms/NextEpisodeButton.tsx @@ -80,12 +80,6 @@ export function NextEpisodeButton(props: { props.onChange?.(metaCopy); }, [setDirectMeta, nextEp, meta, props, setShouldStartFromBeginning]); - useEffect(() => { - if (time === duration && showingState === "always") { - loadNextEpisode(); - } - }, [time, duration, showingState, loadNextEpisode]); - const startCurrentEpisodeFromBeginning = useCallback(() => { if (!meta || !meta.episode) return; const metaCopy = { ...meta };