fix: Removing a part of code as its not updating the API params dependency correctly in Evaluations (#41019)

## Description

Removing a part of code as its not updating the API params dependency
correctly in Evaluations

Fixes [#41021](https://github.com/appsmithorg/appsmith/issues/41021)

## Automation

/ok-to-test tags="@tag.All"

### 🔍 Cypress test results
<!-- This is an auto-generated comment: Cypress test results  -->
> [!TIP]
> 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
> Workflow run:
<https://github.com/appsmithorg/appsmith/actions/runs/15827212934>
> Commit: 0c78c53a95dbdf37c0e157e0cb15fdce9aa6674c
> <a
href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=15827212934&attempt=2"
target="_blank">Cypress dashboard</a>.
> Tags: `@tag.All`
> Spec:
> <hr>Mon, 23 Jun 2025 16:31:24 UTC
<!-- end of auto-generated comment: Cypress test results  -->


## Communication
Should the DevRel and Marketing teams inform users about this change?
- [ ] Yes
- [ ] No


<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **Refactor**
- Updated the behavior of the API configuration form to streamline how
path and query parameters are handled during autofill. The form now
updates the visible path field without triggering additional background
updates.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Ankita Kinger 2025-06-24 13:54:49 +05:30 committed by GitHub
parent 7c00b6a229
commit f47332a129
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -124,15 +124,6 @@ function* syncApiParamsSaga(
`${currentPath}${paramsString}`, `${currentPath}${paramsString}`,
), ),
); );
// Also update the action property to ensure the path is updated in the action
yield put(
setActionProperty({
actionId: actionId,
propertyName: "actionConfiguration.path",
value: `${currentPath}${paramsString}`,
}),
);
} }
} }