Commit 8ac3b836 authored by Zach Pomerantz's avatar Zach Pomerantz Committed by GitHub

fix: slippage input size (#3350)

parent 12bc5957
......@@ -130,7 +130,7 @@ export default function MaxSlippageSelect() {
>
<Row color={warning === 'error' ? 'error' : undefined}>
<DecimalInput
size={Math.max(maxSlippageInput.length, 3)}
size={Math.max(maxSlippageInput.length, 4)}
value={maxSlippageInput}
onChange={(input) => processValue(+input)}
placeholder={placeholder}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment