Skip to content

Commit

Permalink
Change params for series
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilgeorgescu authored Oct 29, 2024
1 parent eadef8c commit 725265b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/series/[id].astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export async function getStaticPaths() {
const seriess = await getCollection("seriess");
return seriess.map((series) => ({
params: { id: seriess[0]?.id },
params: { id: seriess.title },
props: { series },
}));
}
Expand Down

0 comments on commit 725265b

Please sign in to comment.