From a387cf9dde0f996651f969b088e6566e254f5caa Mon Sep 17 00:00:00 2001 From: Ilia Znamenskii Date: Fri, 21 Feb 2025 17:35:21 +0100 Subject: [PATCH] ignore ts error --- .../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 82ff0cc05ba3..8f4af3ed3770 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,