Skip to content

Commit

Permalink
fix: correct slug parameter structure in release notes routing
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro-balades committed Dec 10, 2024
1 parent b0d4fbc commit 95feaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/release-notes/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export async function getStaticPaths() {
params: { slug: release.version },
props: { ...release },
})), {
params: { slug: ['latest'] },
params: { slug: 'latest' },
props: { ...releaseNotes[0] },
}];
}
Expand Down

0 comments on commit 95feaf1

Please sign in to comment.