diff --git a/apps/desktop/src/renderer/components/gitlab-issues/components/BatchReviewWizard.tsx b/apps/desktop/src/renderer/components/gitlab-issues/components/BatchReviewWizard.tsx index 09b69690..6b5673ee 100644 --- a/apps/desktop/src/renderer/components/gitlab-issues/components/BatchReviewWizard.tsx +++ b/apps/desktop/src/renderer/components/gitlab-issues/components/BatchReviewWizard.tsx @@ -65,7 +65,6 @@ export interface GitLabProposedBatch { interface GitLabBatchReviewWizardProps { isOpen: boolean; onClose: () => void; - projectId: string; onStartAnalysis: () => void; onApproveBatches: (batches: GitLabProposedBatch[]) => Promise; analysisProgress: GitLabAnalyzePreviewProgress | null; @@ -78,7 +77,6 @@ interface GitLabBatchReviewWizardProps { export function GitLabBatchReviewWizard({ isOpen, onClose, - projectId, onStartAnalysis, onApproveBatches, analysisProgress, @@ -240,10 +238,10 @@ export function GitLabBatchReviewWizard({ {t('gitlab:batchReview.description')}

- {analysisError && ( + {(analysisError || approvalError) && (
- {analysisError} + {analysisError || approvalError}
)}