feat: 移除未使用的点击跳转到帖子功能,优化评论模型

This commit is contained in:
2025-09-09 21:59:21 +08:00
parent 3e70d63e70
commit 5fb6cd63dd
2 changed files with 0 additions and 10 deletions

View File

@ -19,9 +19,3 @@ export function useToUserProfile() {
};
}
export function clickToPost(postId: number) {
const router = useRouter()
return () => {
router.push(`/p/${postId}`)
}
}

View File

@ -16,7 +16,3 @@ export interface Comment {
likeCount: number
isLiked: boolean
}
export interface UpdateCommentRequest {
}