From 3ba6406a4b93f1277e68e20dd9cfc4fa6f3ac46d Mon Sep 17 00:00:00 2001 From: "SK\\ssssk" Date: Wed, 28 Aug 2024 22:28:54 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=B6=88=ED=95=84=EC=9A=94=ED=95=9C=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/gathering/page.tsx | 2 -- src/app/layout.tsx | 1 - src/components/gathering/GatheringViewerContainer.tsx | 2 -- 3 files changed, 5 deletions(-) diff --git a/src/app/gathering/page.tsx b/src/app/gathering/page.tsx index 586f6c14..a6373d21 100644 --- a/src/app/gathering/page.tsx +++ b/src/app/gathering/page.tsx @@ -20,8 +20,6 @@ async function getData() { }, ); - console.log("page.tsx 파일 : ", res.status); - if (!res.ok) { throw new Error("Failed to fetch data"); } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 917e3139..3389764c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -32,7 +32,6 @@ export default function RootLayout({ - {/* */}
diff --git a/src/components/gathering/GatheringViewerContainer.tsx b/src/components/gathering/GatheringViewerContainer.tsx index 52daed3d..b08e61b2 100644 --- a/src/components/gathering/GatheringViewerContainer.tsx +++ b/src/components/gathering/GatheringViewerContainer.tsx @@ -1,7 +1,6 @@ "use client" import useModalState from "@/hooks/useModalState"; -import useAuthStore from "@/store/authStore"; import { GatheringDetailResponseDto } from "@/types/GatheringDto"; import GatheringViewer from "./GatheringViewer"; @@ -12,7 +11,6 @@ interface IGatheringViewerContainer { const GatheringViewerContainer = ({ data, postId }: IGatheringViewerContainer) => { const modalState = useModalState(); - const authStore = useAuthStore(); return (