diff --git a/src/components/modal/index.tsx b/src/components/modal/index.tsx index e4548333..75dcd309 100644 --- a/src/components/modal/index.tsx +++ b/src/components/modal/index.tsx @@ -10,7 +10,7 @@ export interface ModalProps { const Modal = ({ modalText, subText, onConfirmClick }: ModalProps) => { const [isShowModal, setIsShowModal] = useState(true); - const [isShowSubText, setIsSubText] = useState(true); + const [isShowSubText] = useState(true); const handleModalClose = () => { setIsShowModal(false);