feat: fix TypeScript errors and improve code quality

This commit is contained in:
2025-06-04 11:30:12 +09:00
parent a93cfd201d
commit 56320f125b
3 changed files with 4 additions and 3 deletions

View File

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