Skip to content

Commit

Permalink
Fix: 불필요 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
seungjun222 committed Jan 8, 2024
1 parent 7086cea commit c52f946
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/components/common/modal/children/EditDelete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@ import {
import {
contentState,
contentTypeIdState,
// commentContentState,
isModifyingCommentState,
isModifyingReviewState,
keywordsState,
ratingState,
// reviewDataState,
targetCommentIdState,
// commentState,
targetReviewIdState,
tourItemIdState,
} from '@recoil/review';
Expand All @@ -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);
Expand Down

0 comments on commit c52f946

Please sign in to comment.