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 351deae commit 155ad6c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/components/common/modal/children/DeleteAlert.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import React from 'react';
import { ButtonWhite, ButtonPrimary } from '@components/common/button/Button';
import { deleteReview } from '@api/review';
import { useNavigate } from 'react-router-dom';
import { useRecoilValue, useSetRecoilState } from 'recoil';
import { ButtonPrimary, ButtonWhite } from '@components/common/button/Button';
import { isModalOpenState } from '@recoil/modal';
import {
alertState,
targetReviewIdState,
tourItemIdState,
alertState,
} from '@recoil/review';
import { isModalOpenState } from '@recoil/modal';
import { useNavigate } from 'react-router-dom';
import { useRecoilValue, useSetRecoilState } from 'recoil';
const DeleteAlert = ({}) => {
const navigate = useNavigate();
const tourItemId = useRecoilValue(tourItemIdState);
Expand Down

0 comments on commit 155ad6c

Please sign in to comment.