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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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),