From 5ea7c7bf7bfebde70d8515e4e3527afe3da10f8f Mon Sep 17 00:00:00 2001 From: Ilia Date: Fri, 21 Feb 2025 18:12:05 +0100 Subject: [PATCH] fix: ignore ts error (#39400) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description > [!TIP] > _Add a TL;DR when the description is longer than 500 words or extremely technical (helps the content, marketing, and DevRel team)._ > > _Please also include relevant motivation and context. List any dependencies that are required for this change. Add links to Notion, Figma or any other documents that might be relevant to the PR._ Fixes #`Issue Number` _or_ Fixes `Issue URL` > [!WARNING] > _If no issue exists, please create an issue first, and check with the maintainers if the issue is valid._ ## Automation /ok-to-test tags="@tag.Anvil" ### :mag: Cypress test results > [!TIP] > ๐ŸŸข ๐ŸŸข ๐ŸŸข All cypress tests have passed! ๐ŸŽ‰ ๐ŸŽ‰ ๐ŸŽ‰ > Workflow run: > Commit: a387cf9dde0f996651f969b088e6566e254f5caa > Cypress dashboard. > Tags: `@tag.Anvil` > Spec: >
Fri, 21 Feb 2025 17:06:49 UTC ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No ## Summary by CodeRabbit - **Chores** - Updated internal error suppression comments to align with improved static analysis practices. This change streamlines the code maintenance process while ensuring that the applicationโ€™s functionality remains consistent. --- .../FunctionCallingConfigControl/components/selectors.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/client/src/components/formControls/FunctionCallingConfigControl/components/selectors.ts b/app/client/src/components/formControls/FunctionCallingConfigControl/components/selectors.ts index 82ff0cc05b..8f4af3ed37 100644 --- a/app/client/src/components/formControls/FunctionCallingConfigControl/components/selectors.ts +++ b/app/client/src/components/formControls/FunctionCallingConfigControl/components/selectors.ts @@ -115,7 +115,8 @@ const selectSystemFunctionEntityOptions = return ( objectKeys(systemFunctions) - // @ts-expect-error assignRequest doesn't exist in CE repo but added in EE repo + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore assignRequest doesn't exist in CE repo but added in EE repo .filter((name) => name !== "assignRequest") .map((name) => ({ value: name,