From a8c99f2a4530d520955287607d620ebbd8067db9 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Sat, 11 Jul 2026 16:09:01 -0400 Subject: [PATCH] a11y(polls): drop redundant aria-label on max-selections input Review noted the number input had both an htmlFor-associated visible label ("Voters can pick up to") and an aria-label, so the aria-label won and the visible label was not announced. Remove the aria-label so the accessible name matches the visible label. Co-Authored-By: Claude Opus 4.8 --- src/app/features/room/PollCreator.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/features/room/PollCreator.tsx b/src/app/features/room/PollCreator.tsx index 21a3ae46c..1e8c58341 100644 --- a/src/app/features/room/PollCreator.tsx +++ b/src/app/features/room/PollCreator.tsx @@ -247,7 +247,6 @@ export function PollCreator({ roomId, onClose }: PollCreatorProps) { ) } style={{ width: '4rem' }} - aria-label="Maximum selections per voter" /> of {options.length} options