Skip to content

Commit

Permalink
fix: import 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yogjin committed Mar 5, 2024
1 parent 9376341 commit 2d2e2c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/Feed/Feed.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import NewIdeaCardListSection from './components/NewIdeaCardListSection/NewIdeaC
import { getUserNickname } from './utils/getUserNickname';
import Padding from '../../components/Padding';
import Logo from '../../layouts/Logo';
import { useWritingInfoQuery } from '../write/hooks/queries/useWritingInfoQuery';
import { useWritingInfoQuery } from '../Write/hooks/queries/useWritingInfoQuery';

const Feed = () => {
const [isFilterBottomSheetOpen, setIsFilterBottomSheetOpen] = useState(false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import {
useRadio,
} from 'concept-be-design-system';

import RecruitmentPlaceSection from '../../../write/components/RecruitmentPlaceSection';
import { Idea } from '../../../write/types';
import RecruitmentPlaceSection from '../../../Write/components/RecruitmentPlaceSection';
import { Idea } from '../../../Write/types';
import { useFilterParams } from '../../context/filterContext';

const cooperationWays = [
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Feed/hooks/mutations/useDeleteBookmarkIdea.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useMutation, useQueryClient } from '@tanstack/react-query';

import { http } from '../../../../api/http';
import { memberId } from '../../../profile/utils/memberId';
import { memberId } from '../../../Profile/utils/memberId';

const _deleteBookmarkIdea = (ideaId: number) => {
return http.delete(`/bookmark/${ideaId}`);
Expand Down

0 comments on commit 2d2e2c2

Please sign in to comment.