From 43efc3c7e57936bc029a532180e2d37a707db779 Mon Sep 17 00:00:00 2001 From: Vinay Badgujar Date: Wed, 30 Oct 2024 07:36:45 +0530 Subject: [PATCH] remove: newgoalmoved check --- src/helpers/GoalProcessor.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/helpers/GoalProcessor.ts b/src/helpers/GoalProcessor.ts index c7789fde9..ee2d55666 100644 --- a/src/helpers/GoalProcessor.ts +++ b/src/helpers/GoalProcessor.ts @@ -112,8 +112,6 @@ export const getTypeAtPriority = (goalChanges: IChangesInGoal) => { typeAtPriority = "deleted"; } else if (goalChanges.restored.length > 0) { typeAtPriority = "restored"; - } else if (goalChanges.newGoalMoved.length > 0) { - typeAtPriority = "newGoalMoved"; } else if (goalChanges.moved.length > 0) { typeAtPriority = "moved"; }