fix: access .data instead of .items in ShowsPage
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s

This commit is contained in:
fullsizemalt 2025-12-31 09:16:53 -08:00
parent de2dd0a69d
commit 379e0eff85

View file

@ -36,7 +36,7 @@ export default async function ShowsPage({ params }: Props) {
} }
const data = await getShows(vertical.slug) const data = await getShows(vertical.slug)
const shows = data?.items || [] const shows = data?.data || []
return ( return (
<div className="space-y-6"> <div className="space-y-6">