From 48a7fa921f2223612868f4ee000cda56cbb93248 Mon Sep 17 00:00:00 2001 From: Kiran Niranjan Date: Wed, 20 Mar 2024 15:12:04 +0530 Subject: [PATCH] SDA-3856 - Remove config version from user config (#2112) --- src/app/config-handler.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/config-handler.ts b/src/app/config-handler.ts index 1be3d17b2..645088dd8 100644 --- a/src/app/config-handler.ts +++ b/src/app/config-handler.ts @@ -612,7 +612,6 @@ class Config { ); const { url, ...rest } = this.globalConfig as IConfig; await this.updateUserConfig({ - configVersion: app.getVersion().toString(), buildNumber, ...rest, } as IConfig);