feat: Add "use client" directive to FeedList and EpisodePlayer

This commit is contained in:
2025-06-04 10:41:29 +09:00
parent c52c9d9656
commit 7c3a064b97
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
"use client";
import React, { useState } from "react";
import React, { useEffect, useState } from "react";
interface Episode {
id: string;

View File

@ -1,5 +1,7 @@
"use client";
"use client";
import React, { useEffect, useState } from "react";
interface FeedItem {