diff --git a/app/shows/[id]/page.tsx b/app/shows/[id]/page.tsx index 1c2d145..bf515db 100644 --- a/app/shows/[id]/page.tsx +++ b/app/shows/[id]/page.tsx @@ -21,7 +21,7 @@ const fetchShowWithEpisodes = async (id: ShowId) => { const response = await supabase .from('show') - .select('*, episodes:episode(*, episode_content(id))') + .select('*, episodes:episode(*, episode_content(id, text_summary))') .eq('id', id) .single(); @@ -76,7 +76,7 @@ export default async function Page(props: { params: { id: ShowId } }) { {data.episodes.map((episode) => (