diff --git a/src/pages/categories/[category]/[...page].astro b/src/pages/categories/[category]/[...page].astro index b00fb4f..5dcac03 100644 --- a/src/pages/categories/[category]/[...page].astro +++ b/src/pages/categories/[category]/[...page].astro @@ -31,11 +31,11 @@ interface Props { } const { page } = Astro.props -const { Category } = Astro.params +const { category } = Astro.params const meta = { - description: `View all posts of Category - ${Category}`, - title: `Category: ${Category}` + description: `View all posts of Category - ${category}`, + title: `Category: ${category}` } const paginationProps = { @@ -73,7 +73,7 @@ const paginationProps = {

Category: - #{Category} + #{category}