From 4896d7552f15c436f40a84588861922f2df529d9 Mon Sep 17 00:00:00 2001 From: Larry Lai Date: Thu, 5 Dec 2024 19:41:40 -0800 Subject: [PATCH] fix suggestion identifier in logging for CRCR Summary: So it turns out CRCR logs CodePatch ID instead of PhabCodePatchSuggestion ID to the as the suggestion identifier. Fix the identifier we're using here to match. Differential Revision: D66856918 fbshipit-source-id: fd514fac78431c3cdade66572bc48f53f222cd9a --- addons/isl/src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/isl/src/types.ts b/addons/isl/src/types.ts index 0d7ab7d01f338..3bb9b76840f04 100644 --- a/addons/isl/src/types.ts +++ b/addons/isl/src/types.ts @@ -117,6 +117,7 @@ export type SuggestedChange = { id?: string; type?: SuggestedChangeType; codePatchSuggestionID?: string; + codePatchID?: string; status?: CodePatchSuggestionStatus; archivedState?: ArchivedStateType; archivedReason?: ArchivedReasonType;