From 897c6172cd2173ffccd256313b99330d38acb12b Mon Sep 17 00:00:00 2001 From: Kiran Niranjan Date: Thu, 4 Apr 2024 13:50:48 +0530 Subject: [PATCH] SDA-4197 - Use correct variable to clear interval (#2122) --- 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 e22b9804..251c760e 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); } } };