disable conditional orders on testnet until they support them

This commit is contained in:
jaredvu
2023-08-24 14:18:55 -07:00
parent 3afd5ef783
commit 0e26433e29
+1
View File
@@ -47,6 +47,7 @@ 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),