From 84231265e56614b714638628a52f51943995e52c Mon Sep 17 00:00:00 2001 From: Vemparala Surya Vamsi Date: Fri, 20 Dec 2024 00:58:38 +0530 Subject: [PATCH] removed delay --- app/client/src/sagas/EvaluationsSaga.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/client/src/sagas/EvaluationsSaga.ts b/app/client/src/sagas/EvaluationsSaga.ts index 4c3c05550f6..f9cfec13cbc 100644 --- a/app/client/src/sagas/EvaluationsSaga.ts +++ b/app/client/src/sagas/EvaluationsSaga.ts @@ -784,8 +784,6 @@ function* evaluationChangeListenerSaga(): any { ); } - yield delay(500); - // We are dequing actions from the buffer and inferring the JS actions affected by each // action. Through this we know ahead the nodes we need to specifically diff, thereby improving performance. const affectedJSObjects = getAffectedJSObjectIdsFromAction(action);