diff --git a/frontend/src/components/Place/DeletePlaceButton.tsx b/frontend/src/components/Place/DeletePlaceButton.tsx index c441b19c..deb4dea3 100644 --- a/frontend/src/components/Place/DeletePlaceButton.tsx +++ b/frontend/src/components/Place/DeletePlaceButton.tsx @@ -2,7 +2,7 @@ import useDeletePlaceMutation from '@/hooks/api/useDeletePlaceMutation'; import { useStore } from '@/store/useStore'; import { CreateMapType } from '@/types'; import { useParams } from 'react-router-dom'; -import DeleteIcon from '@/components/common/Icon/DeleteIcon'; +import DeleteIcon from '../common/DeleteIcon'; type DeletePlaceButtonProps = { placeId: number; diff --git a/frontend/src/components/Place/DetailPlaceForm.tsx b/frontend/src/components/Place/DetailPlaceForm.tsx index 21d545ea..0c346054 100644 --- a/frontend/src/components/Place/DetailPlaceForm.tsx +++ b/frontend/src/components/Place/DetailPlaceForm.tsx @@ -14,7 +14,7 @@ import { } from '@/types'; import ColorSelector from '@/pages/PlaceCreation/ColorSelector'; import { useAddPlaceMutation } from '@/hooks/api/useAddPlaceMutation'; -import { useLocation, useParams } from 'react-router-dom'; +import { useParams } from 'react-router-dom'; import { useAddPlaceToCourseMutation } from '@/hooks/api/useAddPlaceToCourseMutation'; type DetailPlaceFormProps = {