From 7b1ec1785d4873dd1613a4e1ccc63829c9356d56 Mon Sep 17 00:00:00 2001 From: monilprajapati Date: Wed, 17 Jul 2024 22:14:01 +0530 Subject: [PATCH] Removed the auto variable remover logic from param while flipping the branch --- frontend/src/components/ParsedAction.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/ParsedAction.jsx b/frontend/src/components/ParsedAction.jsx index 2bdc7daf..c4cff82f 100755 --- a/frontend/src/components/ParsedAction.jsx +++ b/frontend/src/components/ParsedAction.jsx @@ -619,8 +619,9 @@ const ParsedAction = (props) => { notPresentAction?.forEach((action) => { console.log("Not included Action: ", action) if(paramvalue.includes(action)){ - paramvalue = paramvalue.replace(action, "") - paramvalue = paramvalue.replace(/^\s*[\r\n]/gm, ""); + + // paramvalue = paramvalue.replace(action, "") + // paramvalue = paramvalue.replace(/^\s*[\r\n]/gm, ""); } }) }