diff --git a/configs/eslint-config-compass/index.js b/configs/eslint-config-compass/index.js index 3e345d4ffc7..14e9729e6c7 100644 --- a/configs/eslint-config-compass/index.js +++ b/configs/eslint-config-compass/index.js @@ -37,7 +37,6 @@ const extraTsRules = { '@typescript-eslint/no-floating-promises': 'warn', '@typescript-eslint/no-unsafe-enum-comparison': 'warn', '@typescript-eslint/no-misused-promises': 'warn', - '@typescript-eslint/no-duplicate-enum-values': 'warn', }; const tsRules = { diff --git a/packages/compass-aggregations/src/modules/pipeline-builder/stage-editor.ts b/packages/compass-aggregations/src/modules/pipeline-builder/stage-editor.ts index 6c4a02d63b0..92e833f1d3c 100644 --- a/packages/compass-aggregations/src/modules/pipeline-builder/stage-editor.ts +++ b/packages/compass-aggregations/src/modules/pipeline-builder/stage-editor.ts @@ -42,7 +42,7 @@ export const enum StageEditorActionTypes { StagePreviewFetchError = 'compass-aggregations/pipeline-builder/stage-editor/StagePreviewFetchError', StageRun = 'compass-aggregations/pipeline-builder/stage-editor/StageRun', StageRunSuccess = 'compass-aggregations/pipeline-builder/stage-editor/StageRunSuccess', - StageRunError = 'compass-aggregations/pipeline-builder/stage-editor/StagePreviewFetchError', + StageRunError = 'compass-aggregations/pipeline-builder/stage-editor/StageRunError', StageValueChange = 'compass-aggregations/pipeline-builder/stage-editor/StageValueChange', StageOperatorChange = 'compass-aggregations/pipeline-builder/stage-editor/StageOperatorChange', StageCollapsedChange = 'compass-aggregations/pipeline-builder/stage-editor/StageCollapsedChange',