Skip to content

Commit

Permalink
feat: (#410) 모달의 title을 설명할 때 추가적인 정보를 주도록 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilpop8663 committed Aug 17, 2023
1 parent 07b8069 commit 1bcdd2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/common/TwoButtonModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ export default function TwoButtonModal({
return (
<S.Container ref={BackDropRef}>
<S.ModalContainer>
<S.Title tabIndex={0}>{title}</S.Title>
<S.Title aria-label={`제목: ${title}`} tabIndex={0}>
{title}
</S.Title>
{children}
<S.ButtonContainer>
<S.ButtonWrapper>
Expand Down

0 comments on commit 1bcdd2a

Please sign in to comment.