Skip to content

Commit

Permalink
fix: 빌드 오류 경로 수정 #142
Browse files Browse the repository at this point in the history
  • Loading branch information
1119wj committed Nov 22, 2024
1 parent 4ae6838 commit ad2574e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Place/DeletePlaceButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Place/DetailPlaceForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit ad2574e

Please sign in to comment.