From 7a9d8b8e827931ec930540f7353262a4d85358b5 Mon Sep 17 00:00:00 2001 From: Lorenz Padberg Date: Wed, 13 Sep 2023 11:48:24 +0200 Subject: [PATCH] Disable Language filter on all Plaforms except myKV --- client/src/helpers/app-flavor.constants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/helpers/app-flavor.constants.ts b/client/src/helpers/app-flavor.constants.ts index 1de18506..b76c1dff 100644 --- a/client/src/helpers/app-flavor.constants.ts +++ b/client/src/helpers/app-flavor.constants.ts @@ -65,6 +65,7 @@ export const dhaValues: FlavorValues = Object.assign({}, myKvValues, { appLogo: 'https://skillbox-my-detailhandel-dha-prod.s3.eu-central-1.amazonaws.com/myDHA-logo.png', textAppName: 'myDHA', helloIllustration: 'HelloMyDHAIllustration', + showLanguageFilter: false, }); export const dhfValues: FlavorValues = Object.assign({}, myKvValues, { @@ -74,4 +75,5 @@ export const dhfValues: FlavorValues = Object.assign({}, myKvValues, { appLogo: 'https://skillbox-my-detailhandel-dhf-prod.s3.eu-central-1.amazonaws.com/myDHF-logo.png', textAppName: 'myDHF', helloIllustration: 'HelloMyDHFIllustration', + showLanguageFilter: false, });