diff --git a/frontend/src/components/EpisodePlayer.tsx b/frontend/src/components/EpisodePlayer.tsx index 460b6ef..ee96660 100644 --- a/frontend/src/components/EpisodePlayer.tsx +++ b/frontend/src/components/EpisodePlayer.tsx @@ -37,7 +37,6 @@ export default function EpisodePlayer() { const handlePlay = (episode: Episode) => { setSelectedEpisode(episode); setAudioUrl(`/podcast_audio/${episode.id}.mp3`); - setIsPlaying(true); }; if (loading) return
読み込み中...
; @@ -73,8 +72,6 @@ export default function EpisodePlayer() { src={audioUrl} controls className="w-full" - onPlay={() => setIsPlaying(true)} - onPause={() => setIsPlaying(false)} /> ) : (
音声ファイルを読み込み中...