From 0c1f7ef308d4db2c8eac3aa4b030d33a717945df Mon Sep 17 00:00:00 2001 From: Kiran Niranjan Date: Fri, 5 Apr 2024 13:15:53 +0530 Subject: [PATCH] SDA-4197 - Use correct variable to clear interval --- src/app/window-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/window-utils.ts b/src/app/window-utils.ts index e22b98043..251c760e5 100644 --- a/src/app/window-utils.ts +++ b/src/app/window-utils.ts @@ -1196,7 +1196,7 @@ export const updateFeaturesForCloudConfig = async ( } else { // Clear the interval if autoUpdate is disabled if (autoUpdateIntervalId) { - clearInterval(autoUpdateCheckInterval); + clearInterval(autoUpdateIntervalId); } } };