We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd39707 commit d8cbcbbCopy full SHA for d8cbcbb
src/apps/admin/src/lib/components/DefaultReviewersAddForm/DefaultReviewersAddForm.tsx
@@ -153,6 +153,11 @@ export const DefaultReviewersAddForm: FC<Props> = (props: Props) => {
153
requestBody.baseCoefficient = undefined
154
requestBody.incrementalCoefficient = undefined
155
requestBody.opportunityType = undefined
156
+ // The reason for flipping the value is that
157
+ // in UI the checkbox is shown as "is AI review"
158
+ // but in the database its denoted as member review
159
+ // so we are just flipping the boolean value
160
+ requestBody.isMemberReview = false
161
} else {
162
// eslint-disable-next-line unicorn/no-null
163
requestBody.aiWorkflowId = null
0 commit comments