We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16eff7e commit 4f11bbfCopy full SHA for 4f11bbf
1 file changed
src/pages/Post/PostBase/LikeCommentBottomSheetContent/index.tsx
@@ -81,13 +81,7 @@ const LikeCommentBottomSheetContent: React.FC<LikeCommentBottomSheetProps> = ({
81
82
// 유저 클릭한 경우
83
const handleUserClick = (userId: number) => {
84
- if (currentUserId === userId) {
85
- // 나인 경우
86
- nav(`/profile/${userId}`);
87
- } else {
88
- // 다른 유저인 경우
89
- nav(`/users/${userId}`);
90
- }
+ nav(`/profile/${userId}`);
91
};
92
93
// 댓글 작성 Input
0 commit comments