Skip to content

Commit

Permalink
fix : 접근성에 위배되지 않게 data-pressed 로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SeieunYoo committed Jun 7, 2024
1 parent 0e819a0 commit 9e0a30c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wow-ui/src/components/Checkbox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const Checkbox = forwardRef<HTMLInputElement, CheckboxProps>(
aria-checked={checked}
aria-disabled={disabled}
aria-label={inputProps?.["aria-label"] ?? "checkbox"}
aria-pressed={pressed}
data-pressed={pressed}
id={id}
ref={ref}
tabIndex={0}
Expand Down

0 comments on commit 9e0a30c

Please sign in to comment.