From 25b84f4837f2f199c953a038851a3672e7ed0f00 Mon Sep 17 00:00:00 2001 From: Oj Date: Thu, 21 Apr 2022 22:52:23 +0100 Subject: [PATCH] [Constants] Remove BuildInfo require as global anyway --- src/Constants.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Constants.js b/src/Constants.js index 93c1e53..efcb676 100644 --- a/src/Constants.js +++ b/src/Constants.js @@ -1,5 +1,3 @@ -const { releaseChannel } = require('./utils/buildInfo'); - const titleCase = s => s[0].toUpperCase() + s.slice(1); const appNameSuffix = releaseChannel === 'stable' ? '' : titleCase(releaseChannel);