Skip to content

Commit

Permalink
Minor : Fixme 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jobkaeHenry committed Nov 6, 2023
1 parent b742bbc commit e2905be
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/src/app/post/[userId]/[postId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit e2905be

Please sign in to comment.