mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
Fix lint error
This commit is contained in:
parent
2ccc6232cb
commit
206d6babfc
|
@ -50,8 +50,9 @@ const exchangeList = computed(() => {
|
||||||
});
|
});
|
||||||
|
|
||||||
const tradeModesTyped = computed(() => {
|
const tradeModesTyped = computed(() => {
|
||||||
const val = botStore.activeBot.exchangeList.find((ex) => ex.name === exchangeModel.value.exchange)
|
const val = botStore.activeBot.exchangeList.find(
|
||||||
?.trade_modes;
|
(ex) => ex.name === exchangeModel.value.exchange,
|
||||||
|
)?.trade_modes;
|
||||||
return val ?? [];
|
return val ?? [];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user