feat: Apply fixes for type errors and unused variables

This commit is contained in:
2025-06-04 11:29:18 +09:00
parent 7193dd8bb7
commit a93cfd201d
7 changed files with 25 additions and 25 deletions

View File

@ -1,6 +1,4 @@
"use client";
import React, { useEffect, useState } from "react";
import { useEffect, useState } from "react";
interface Episode {
id: string;
@ -13,7 +11,6 @@ interface Episode {
export default function EpisodePlayer() {
const [episodes, setEpisodes] = useState<Episode[]>([]);
const [selectedEpisode, setSelectedEpisode] = useState<Episode | null>(null);
const [isPlaying, setIsPlaying] = useState(false);
const [audioUrl, setAudioUrl] = useState<string | null>(null);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);