Skip to content

Commit

Permalink
feat: button text를 읽은 후 text도 읽히지 않도록 aria-hidden 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 committed Oct 17, 2024
1 parent 86113b9 commit 8281b53
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ export function Keypad({value, ...restButtonProps}: KeypadProps) {
}
`}
>
<Text size="title">{value}</Text>
<Text size="title" aria-hidden>
{value}
</Text>
</button>
);
}

0 comments on commit 8281b53

Please sign in to comment.