Skip to content

Commit

Permalink
fix: Add img alt to HelpRollingModal
Browse files Browse the repository at this point in the history
  • Loading branch information
rhino-ty committed Dec 5, 2024
1 parent 8bc1576 commit 88538c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/modal/HelpRollingModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const HelpRollingModal = ({ isModalOpened, handleCloseModal, handleKeyDown }: He
setPageIndex(pageIndex == 0 ? pageData.length - 1 : pageIndex - 1);
}}
>
<img src={left} width={30} className="transition hover:brightness-75" />
<img src={left} width={30} alt="이전 페이지 버튼" className="transition hover:brightness-75" />
</button>
<div className="w-full">
<section className={cn('w-full')}>
Expand Down Expand Up @@ -165,7 +165,7 @@ const HelpRollingModal = ({ isModalOpened, handleCloseModal, handleKeyDown }: He
setPageIndex(pageIndex == pageData.length - 1 ? 0 : pageIndex + 1);
}}
>
<img src={right} width={30} className="transition hover:brightness-75" />
<img src={right} width={30} alt="다음 페이지 버튼" className="transition hover:brightness-75" />
</button>
</section>
</Modal>
Expand Down

0 comments on commit 88538c7

Please sign in to comment.