enable conditional orders in order type dropdown in prod (#41)

This commit is contained in:
aleka
2023-09-18 11:19:56 -04:00
committed by GitHub
parent 342bd2d334
commit 9a230401cd
-1
View File
@@ -49,7 +49,6 @@ const useTradeTypeOptions = () => {
value && {
value: value as TradeTypes,
label,
disabled: import.meta.env.MODE === 'production', // TODO: Remove this when stop orders are supported on testnet
}
)
.filter(isTruthy),