Skip to content

Commit 8cd4874

Browse files
authored
A11y bug fix: Add descriptive aria label to button. (#960)
* Changed aria label text to better represent button function for screen readers * Format
1 parent 173101d commit 8cd4874

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/Auth/OneAccountPerEmailCard/OneAccountPerEmailCard.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@ export const OneAccountPerEmailCard: React.FC<
7272
)}
7373

7474
<div>
75-
<Button outlined={true} onClick={() => setOpen(true)}>
75+
<Button
76+
aria-label="Enable or disable multiple accounts from one email address."
77+
outlined={true}
78+
onClick={() => setOpen(true)}
79+
>
7680
Change
7781
</Button>
7882
</div>

0 commit comments

Comments
 (0)