Skip to content

Commit

Permalink
fix: setIsShowSubText 추가 예정 (빌드시 오류로 지워둠)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinjoo-jung committed Jan 22, 2024
1 parent 23af3b8 commit 8c09412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 8c09412

Please sign in to comment.