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 (