fix: add missing lastReviewDecision to legacy PrInfo type

PrPanel.tsx references prInfo.lastReviewDecision but the local
PrInfo interface in legacy.ts was missing this field, breaking
typecheck on main.
This commit is contained in:
gsxdsm
2026-05-17 12:10:14 -07:00
parent 14c5a17844
commit 3c2bbf36c5

View File

@@ -2192,6 +2192,7 @@ export interface PrInfo {
commentCount: number;
lastCommentAt?: string;
lastCheckedAt?: string;
lastReviewDecision?: "APPROVED" | "CHANGES_REQUESTED" | "REVIEW_REQUIRED" | null;
}
export interface PrCheckStatus {