Removed the auto variable remover logic from param while flipping the branch

This commit is contained in:
monilprajapati
2024-07-17 22:14:01 +05:30
parent ca9d83c586
commit 7b1ec1785d
+3 -2
View File
@@ -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, "");
}
})
}