diff --git a/src/components/viewPost/vp-reply-item.vue b/src/components/viewPost/vp-reply-item.vue index c4b68263..c46856c9 100644 --- a/src/components/viewPost/vp-reply-item.vue +++ b/src/components/viewPost/vp-reply-item.vue @@ -121,7 +121,7 @@ import TpParser from "./tp-parser.vue"; type TprReplyProps = | { mode: "sub"; modelValue: TGApp.BBS.Reply.ReplyFull } - | { mode: "main"; modelValue: TGApp.BBS.Reply.ReplyFull; pinId: string }; + | { mode: "main"; modelValue: TGApp.BBS.Reply.ReplyFull; pinId?: string }; const props = defineProps(); const replyId = `reply_${props.modelValue.reply.post_id}_${props.modelValue.reply.floor_id}_${props.modelValue.reply.reply_id}`;