From 59e5bc2d8df747ad67620920c63b68cab459007b Mon Sep 17 00:00:00 2001 From: laoluo Date: Wed, 22 Dec 2021 20:15:04 +0800 Subject: [PATCH] fix: Fix lint - Unreachable code no-unreachable --- packages/lb-components/src/store/annotation/reducer.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/lb-components/src/store/annotation/reducer.ts b/packages/lb-components/src/store/annotation/reducer.ts index bca224fb5..f2c81a64d 100644 --- a/packages/lb-components/src/store/annotation/reducer.ts +++ b/packages/lb-components/src/store/annotation/reducer.ts @@ -473,7 +473,6 @@ export const annotationReducer = ( step: toStep, toolInstance: annotationEngine.toolInstance, }; - break; } case ANNOTATION_ACTIONS.SET_LOADING: { @@ -489,6 +488,4 @@ export const annotationReducer = ( default: return state; } - - return state; };