From 0ad84a13936efc3f32172a2a498e665616981633 Mon Sep 17 00:00:00 2001 From: xpoes123 Date: Mon, 29 Jun 2026 23:33:11 -0400 Subject: [PATCH] a11y: mark active pagination page with aria-current --- client/db/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/db/index.jsx b/client/db/index.jsx index 4f7d742b4..8968f5d38 100644 --- a/client/db/index.jsx +++ b/client/db/index.jsx @@ -418,7 +418,7 @@ function QueryForm () { const isActive = tossupPaginationNumber === i + 1; return (
  • - { handleTossupPaginationClick(event, i + 1); }}> + { handleTossupPaginationClick(event, i + 1); }}> {i + 1}
  • @@ -477,7 +477,7 @@ function QueryForm () { const isActive = bonusPaginationNumber === i + 1; return (
  • - { handleBonusPaginationClick(event, i + 1); }}> + { handleBonusPaginationClick(event, i + 1); }}> {i + 1}