Browse Source
Remove checkbox from confirmation buy confirmation dialog
shutdown-taker-if-no-maker-present
bonomat
3 years ago
No known key found for this signature in database
GPG Key ID: E5F8E74C672BC666
1 changed files with
3 additions and
3 deletions
-
taker-frontend/src/components/Trade.tsx
|
|
@ -4,7 +4,6 @@ import { |
|
|
|
Button, |
|
|
|
ButtonGroup, |
|
|
|
Center, |
|
|
|
Checkbox, |
|
|
|
Circle, |
|
|
|
FormControl, |
|
|
|
FormHelperText, |
|
|
@ -163,7 +162,9 @@ const Trade = ( |
|
|
|
<Modal isOpen={isOpen} onClose={onClose}> |
|
|
|
<ModalOverlay /> |
|
|
|
<ModalContent> |
|
|
|
<ModalHeader>Market buy <b>{quantity}</b> of BTC/USD @ <b>{price}</b></ModalHeader> |
|
|
|
<ModalHeader> |
|
|
|
Market buy <b>{quantity}</b> of BTC/USD @ <b>{price}</b> |
|
|
|
</ModalHeader> |
|
|
|
<ModalCloseButton /> |
|
|
|
<ModalBody> |
|
|
|
<Table variant="striped" colorScheme="gray" size="sm"> |
|
|
@ -192,7 +193,6 @@ const Trade = ( |
|
|
|
<Button colorScheme="teal" isLoading={isSubmitting} onClick={goLong}> |
|
|
|
Confirm |
|
|
|
</Button> |
|
|
|
<Checkbox defaultIsChecked>Always show this dialog</Checkbox> |
|
|
|
</HStack> |
|
|
|
</ModalFooter> |
|
|
|
</ModalContent> |
|
|
|