From 0bbc22e8039e20118058b9d2bb41e466ba8813ec Mon Sep 17 00:00:00 2001 From: ogerly Date: Thu, 18 Aug 2022 10:42:19 +0200 Subject: [PATCH] remove COMMUNITY_NAME in config.js --- admin/src/components/CommunityStatistic.vue | 4 ---- admin/src/config/index.js | 5 ----- 2 files changed, 9 deletions(-) diff --git a/admin/src/components/CommunityStatistic.vue b/admin/src/components/CommunityStatistic.vue index 19655b0e3..c19f8deec 100644 --- a/admin/src/components/CommunityStatistic.vue +++ b/admin/src/components/CommunityStatistic.vue @@ -4,10 +4,6 @@ - -
diff --git a/admin/src/config/index.js b/admin/src/config/index.js index 7468227ef..fe373386d 100644 --- a/admin/src/config/index.js +++ b/admin/src/config/index.js @@ -32,10 +32,6 @@ const endpoints = { WALLET_URL: process.env.WALLET_URL || 'http://localhost/login', } -const community = { - COMMUNITY_NAME: process.env.COMMUNITY_NAME || 'Gradido Entwicklung', -} - const debug = { DEBUG_DISABLE_AUTH: process.env.DEBUG_DISABLE_AUTH === 'true' || false, } @@ -57,7 +53,6 @@ const CONFIG = { ...version, ...environment, ...endpoints, - ...community, ...debug, }