diff --git a/src/pages/comment/CommentPage.tsx b/src/pages/comment/CommentPage.tsx index 52d46d89..96f38f03 100644 --- a/src/pages/comment/CommentPage.tsx +++ b/src/pages/comment/CommentPage.tsx @@ -18,7 +18,7 @@ import { CommentList } from '@/features/comments/components/CommentList'; import { useAddComment } from '@/features/comments/queries/useAddComment'; import { useGetComments } from '@/features/comments/queries/useGetComments'; import { commentStateAtom } from '@/features/comments/states/comment'; -import { PostDetailContent } from '@/features/posts/components/post-detail/PostDetail/PostDetailContent'; +import { PostDetailContent } from '@/features/posts/components/post-detail/PostDetailItem/PostDetailContent'; import { useDeletePost, useGetPost } from '@/features/posts/queries'; import { getRemainingTime } from '@/features/posts/utils/get-remaining-time'; import { UserProfile } from '@/features/user/components/UserProfile'; diff --git a/src/pages/unregister/UnregisterPage.tsx b/src/pages/unregister/UnregisterPage.tsx index f7d2e181..a909d9ee 100644 --- a/src/pages/unregister/UnregisterPage.tsx +++ b/src/pages/unregister/UnregisterPage.tsx @@ -5,7 +5,7 @@ import { TopAppBar } from '@/common/components/layout'; import { Button } from '@/common/components/ui/buttons'; import { Popup } from '@/common/components/ui/modal'; import { withAuth } from '@/features/auth/components/withAuth/withAuth'; -import { PostVoteInput } from '@/features/posts/components/form'; +import { PostVoteInput } from '@/features/posts/components/post-form'; import { useUnregister } from '@/features/user/queries/useUnregister'; import { useUser } from '@/features/user/queries/useUser';