From c52f946c43072874ce5e6b74b24f79c133f0df23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=96=B4=EC=8A=B9=EC=A4=80?= Date: Mon, 8 Jan 2024 09:19:28 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=EB=B6=88=ED=95=84=EC=9A=94=20=EC=BD=94?= =?UTF-8?q?=EB=93=9C=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/modal/children/EditDelete.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/components/common/modal/children/EditDelete.tsx b/src/components/common/modal/children/EditDelete.tsx index 78af713a..f93a6907 100644 --- a/src/components/common/modal/children/EditDelete.tsx +++ b/src/components/common/modal/children/EditDelete.tsx @@ -8,14 +8,11 @@ import { import { contentState, contentTypeIdState, - // commentContentState, isModifyingCommentState, isModifyingReviewState, keywordsState, ratingState, - // reviewDataState, targetCommentIdState, - // commentState, targetReviewIdState, tourItemIdState, } from '@recoil/review'; @@ -27,12 +24,9 @@ const EditDelete: React.FC = () => { const rating = useRecoilValue(ratingState); const keywords = useRecoilValue(keywordsState); const content = useRecoilValue(contentState); - // const comment = useRecoilValue(commentState); const title = useRecoilValue(titleState); const targetReviewId = useRecoilValue(targetReviewIdState); - // const reviewData = useRecoilValue(reviewDataState); const targetCommentId = useRecoilValue(targetCommentIdState); - // const commentContent = useRecoilValue(commentContentState); const tourItemId = useRecoilValue(tourItemIdState); const contentTypeId = useRecoilValue(contentTypeIdState); const setIsModifyingReview = useSetRecoilState(isModifyingReviewState);