feat: fix typescript errors

This commit is contained in:
2025-06-04 13:26:59 +09:00
parent deede8e1e5
commit 0644ac66b7
2 changed files with 33 additions and 21 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();