Fix typo in getter-mappping

This commit is contained in:
Matthias 2021-08-28 10:15:12 +02:00
parent 14ce8b49ec
commit c3cf37c27c

View File

@ -139,8 +139,8 @@ export default {
[BotStoreGetters.profit](state: FtbotStateType): ProfitInterface | {} {
return state.profit;
},
[BotStoreGetters.botState](state: FtbotStateType): BotState | {} {
return state.profit;
[BotStoreGetters.botState](state: FtbotStateType): BotState | undefined {
return state.botState;
},
},
mutations: {