enable conditional orders

This commit is contained in:
jaredvu
2023-08-23 17:18:40 -07:00
parent 591166e93d
commit 6ecdcd981e
+1 -1
View File
@@ -49,7 +49,7 @@ export const TradeBoxOrderView = () => {
].map((tradeType) => ({
value: tradeType,
label: stringGetter({ key: TRADE_TYPE_STRINGS[tradeType].tradeTypeKeyShort }),
disabled: true,
disabled: tradeType === TradeTypes.TRAILING_STOP,
})),
},
];