Skip to content

Commit

Permalink
refactor: remove redundant 'Navigation' word in pagination aira-label
Browse files Browse the repository at this point in the history
  • Loading branch information
satnaing committed Nov 29, 2022
1 parent c360473 commit d1450ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/Posts.astro
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const next = pageNum < totalPages ? "" : "disabled";
</ul>
</Main>

<nav class="pagination-wrapper" aria-label="Pagination Navigation">
<nav class="pagination-wrapper" aria-label="Pagination">
<LinkButton
disabled={prev === "disabled"}
href={`/posts${pageNum - 1 !== 1 ? "/" + (pageNum - 1) : ""}`}
Expand Down

0 comments on commit d1450ac

Please sign in to comment.