Browse Source
The taker enforces 100 increments but the default maker was 10 🤦♂️
release/0.3.1
bonomat
3 years ago
No known key found for this signature in database
GPG Key ID: E5F8E74C672BC666
1 changed files with
2 additions and
2 deletions
-
maker-frontend/src/MakerApp.tsx
|
|
@ -47,8 +47,8 @@ export default function App() { |
|
|
|
|
|
|
|
const toast = useToast(); |
|
|
|
|
|
|
|
let [minQuantity, setMinQuantity] = useState<string>("10"); |
|
|
|
let [maxQuantity, setMaxQuantity] = useState<string>("100"); |
|
|
|
let [minQuantity, setMinQuantity] = useState<string>("100"); |
|
|
|
let [maxQuantity, setMaxQuantity] = useState<string>("1000"); |
|
|
|
let [orderPrice, setOrderPrice] = useState<string>("0"); |
|
|
|
let [autoRefresh, setAutoRefresh] = useState(true); |
|
|
|
|
|
|
|