diff --git a/packages/neuron-ui/src/components/TransactionFeePanel/index.tsx b/packages/neuron-ui/src/components/TransactionFeePanel/index.tsx index d7df103bc6..948b395ce2 100644 --- a/packages/neuron-ui/src/components/TransactionFeePanel/index.tsx +++ b/packages/neuron-ui/src/components/TransactionFeePanel/index.tsx @@ -16,6 +16,9 @@ const calculateSpeed = (price: number) => { if (price >= 40) { return '60' } + if (price >= 20) { + return '30' + } return '0' }