Skip to content

Commit

Permalink
Rename: handleClickDeleteButton 핸들러 함수명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeonjinan096 committed Mar 7, 2024
1 parent dd6523b commit eb4ebda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ImageDetailModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const ImageDetailModal = ({ isOpen, onClose }: Props) => {

const handleClickDeleteButton = () => {};

const handleDownloadButton = debounce(() => {
const handleClickDownloadButton = debounce(() => {
downloadZzal({
imageUrl,
imageTitle,
Expand All @@ -65,7 +65,7 @@ const ImageDetailModal = ({ isOpen, onClose }: Props) => {
Icon={FolderDown}
iconLabel="다운로드"
children="다운로드"
onClick={handleDownloadButton}
onClick={handleClickDownloadButton}
/>
<ButtonWithIcon
Icon={SendHorizontal}
Expand Down

0 comments on commit eb4ebda

Please sign in to comment.