From e2905be3d4f57e3a3af6fdfa40055fd4218a8265 Mon Sep 17 00:00:00 2001 From: Jungu Lee <1zzangjun@gmail.com> Date: Tue, 7 Nov 2023 04:26:17 +0900 Subject: [PATCH] =?UTF-8?q?Minor=20:=20Fixme=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/app/post/[userId]/[postId]/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/app/post/[userId]/[postId]/page.tsx b/client/src/app/post/[userId]/[postId]/page.tsx index b103cbd..e32eef9 100644 --- a/client/src/app/post/[userId]/[postId]/page.tsx +++ b/client/src/app/post/[userId]/[postId]/page.tsx @@ -17,6 +17,7 @@ const PostDetailPage = ({ }: { params: { userId: string; postId: string }; }) => { + // FIXME @로 시작되는 경우만 슬라이스 하도록 추후에 고치고, 함수화 해야함 const parsedUserId = params.userId.slice(1, params.userId.length); const parsedPostId = params.postId; return (