Skip to content

Commit

Permalink
refactor: role="status" 설정시 aria-atomic=true이기 때문에 코드 수정 #361
Browse files Browse the repository at this point in the history
  • Loading branch information
useon committed Oct 22, 2024
1 parent 68f672a commit 27847d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const ReadyMembersContainer = () => {
return (
<section css={readyMembersContainerLayout}>
<div css={totalNumber}>
<div role="status">{`총 인원 ${members.length}`}</div>
<div role="status">총 인원 ${members.length}</div>
<button css={inviteButton} onClick={handleClickInvite} ref={returnFocusRef}>
초대하기
</button>
Expand Down

0 comments on commit 27847d3

Please sign in to comment.