From 8d2a5cd8e3127e5634f69e0e71b8c77f6e3f95c5 Mon Sep 17 00:00:00 2001 From: Prem Sugeendran <271522295+premsreelathasugeendran@users.noreply.github.com> Date: Sat, 16 May 2026 12:47:26 +0000 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20typo=20"comparision"=20=C3=A2?= =?UTF-8?q?=E2=80=A0=E2=80=99=20"comparison"=20in=20formControls/utils.ts?= =?UTF-8?q?=20comment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Premsugeendran --- app/client/src/components/formControls/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/src/components/formControls/utils.ts b/app/client/src/components/formControls/utils.ts index 487917ff83a3..8593cc05cee8 100644 --- a/app/client/src/components/formControls/utils.ts +++ b/app/client/src/components/formControls/utils.ts @@ -286,7 +286,7 @@ export const caculateIsHidden = ( case "NOT_IN": return Array.isArray(value) && !value.includes(valueAtPath); case "FEATURE_FLAG": - // FEATURE_FLAG comparision is used to hide previous configs, + // FEATURE_FLAG comparison is used to hide previous configs, // and show new configs if feature flag is enabled, if disabled/ not present, // previous config would be shown as is return !!featureFlags && featureFlags[flagValue] === value;