diff --git a/src/store/modules/ftbot/index.ts b/src/store/modules/ftbot/index.ts index 543f12c3..9cdfdbc4 100644 --- a/src/store/modules/ftbot/index.ts +++ b/src/store/modules/ftbot/index.ts @@ -51,7 +51,6 @@ export enum BotStoreGetters { currentLocks = 'currentLocks', plotConfig = 'plotConfig', availablePlotConfigNames = 'availablePlotConfigNames', - plotConfigNames = 'plotConfigNames', plotConfigName = 'plotConfigName', timeframe = 'timeframe', isTrading = 'isTrading', @@ -97,10 +96,6 @@ export default { [BotStoreGetters.availablePlotConfigNames](state: FtbotStateType): string[] { return state.availablePlotConfigNames; }, - // TODO: is the following even used? - [BotStoreGetters.plotConfigNames](state: FtbotStateType): string[] { - return Object.keys(state.customPlotConfig); - }, [BotStoreGetters.plotConfigName](state: FtbotStateType): string { return state.plotConfigName; },