diff --git a/src/components/AlertModal/AlertModal.tsx b/src/components/AlertModal/AlertModal.tsx index b35c92d8..c44762a5 100644 --- a/src/components/AlertModal/AlertModal.tsx +++ b/src/components/AlertModal/AlertModal.tsx @@ -20,7 +20,15 @@ import {AlertModalProps} from '@/types/vote'; * * 자세한 사용은 VoteMeatball.tsx 참고 */ -const AlertModal = ({title, subText, cancelText, actionButton, isSmallSize, onClickAction}: AlertModalProps) => { +const AlertModal = ({ + title, + subText, + cancelText, + actionButton, + isSmallSize, + onClickAction, + onClickCancelAction, +}: AlertModalProps) => { const [isModalOpen, setIsModalOpen] = useRecoilState(isModalOpenState); return ( @@ -33,7 +41,13 @@ const AlertModal = ({title, subText, cancelText, actionButton, isSmallSize, onCl -