markteekman / accessible-astro-components

A set of Accessible, easy to use, Front-end UI Components for Astro.

Home Page:https://accessible-astro.netlify.app/accessible-components/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect usage of props inside Pagination.astro component

markteekman opened this issue · comments

Incorrect syntax:

  • <a href="${previousPage}" aria-label="Previous page">
  • <a href="${nextPage}" aria-label="Next page">

Should be:

  • <a href={previousPage} aria-label="Previous page">
  • <a href={nextPage} aria-label="Next page">