fix: access .data instead of .items in ShowsPage
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
This commit is contained in:
parent
de2dd0a69d
commit
379e0eff85
1 changed files with 1 additions and 1 deletions
|
|
@ -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">
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue