- fix: resolve TypeScript errors in EpisodePlayer and podcast service

This commit is contained in:
2025-06-04 12:17:53 +09:00
parent 9d693ebbe5
commit 940e5c3906
2 changed files with 13 additions and 9 deletions

View File

@ -14,7 +14,6 @@ export default function EpisodePlayer() {
const [audioUrl, setAudioUrl] = useState<string | null>(null);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const [isPlaying, setIsPlaying] = useState(false);
useEffect(() => {
fetchEpisodes();