diff --git a/client/src/helpers/app-flavor.js b/client/src/helpers/app-flavor.js index 8f486ea0..593ad7d7 100644 --- a/client/src/helpers/app-flavor.js +++ b/client/src/helpers/app-flavor.js @@ -40,7 +40,7 @@ if (process.env.VUE_APP_FLAVOR === 'my-kv') { // myKV flags showFooter: false, showObjectivesTitle: false, - showInstrumentFilterSidebar: false, + showInstrumentFilterSidebar: true, showPortfolio: true, showEHB: false, }); diff --git a/client/src/helpers/instrumentType.js b/client/src/helpers/instrumentType.js index 4247bf07..40751ba3 100644 --- a/client/src/helpers/instrumentType.js +++ b/client/src/helpers/instrumentType.js @@ -12,11 +12,7 @@ const instrumentType = (instrument) => { }; const instrumentCategory = (instrument) => { - if (flavor.appFlavor === 'my-kv') { - return flavor.textInstruments; - } else { return `${flavor.textInstruments} - ${instrumentType(instrument)}`; - } }; export default instrumentType;