From 379e0eff85f4a12da8afe4048ec2ece999cbf262 Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Wed, 31 Dec 2025 09:16:53 -0800 Subject: [PATCH] fix: access .data instead of .items in ShowsPage --- frontend/app/[vertical]/shows/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/[vertical]/shows/page.tsx b/frontend/app/[vertical]/shows/page.tsx index d68c2d4..592b262 100644 --- a/frontend/app/[vertical]/shows/page.tsx +++ b/frontend/app/[vertical]/shows/page.tsx @@ -36,7 +36,7 @@ export default async function ShowsPage({ params }: Props) { } const data = await getShows(vertical.slug) - const shows = data?.items || [] + const shows = data?.data || [] return (