diff --git a/apps/web/src/components/code-reviews/ReviewConfigForm.tsx b/apps/web/src/components/code-reviews/ReviewConfigForm.tsx index 0e5875052d..81297cb529 100644 --- a/apps/web/src/components/code-reviews/ReviewConfigForm.tsx +++ b/apps/web/src/components/code-reviews/ReviewConfigForm.tsx @@ -454,7 +454,7 @@ export function ReviewConfigForm({ platform, reviewStyle, focusAreas, - customInstructions: customInstructions.trim() || undefined, + customInstructions: customInstructions || undefined, modelSlug: selectedModel, thinkingEffort, gateThreshold, @@ -470,7 +470,7 @@ export function ReviewConfigForm({ platform, reviewStyle, focusAreas, - customInstructions: customInstructions.trim() || undefined, + customInstructions: customInstructions || undefined, modelSlug: selectedModel, thinkingEffort, gateThreshold, @@ -1047,18 +1047,30 @@ export function ReviewConfigForm({ {/* Custom Instructions */}
- +