From 24cbaf93c2e33215b50c267c933317f31bd30626 Mon Sep 17 00:00:00 2001 From: Jihoo Kim Date: Mon, 21 Aug 2023 16:18:32 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20import=20=EA=B2=BD=EB=A1=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/comment/CommentPage.tsx | 2 +- src/pages/unregister/UnregisterPage.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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';