fix claim/redeem representation
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
parent
57661ab6b1
commit
5b067f50f0
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ghost-dao-interface",
|
"name": "ghost-dao-interface",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.6.7",
|
"version": "0.6.8",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@ -44,7 +44,7 @@ const WarmupConfirmModal = ({
|
|||||||
minHeight="150px"
|
minHeight="150px"
|
||||||
open={isOpen}
|
open={isOpen}
|
||||||
headerText={
|
headerText={
|
||||||
warmupLength < 0
|
warmupLength <= 0
|
||||||
? "Bond Notification"
|
? "Bond Notification"
|
||||||
: "Bond in Warm-up"
|
: "Bond in Warm-up"
|
||||||
}
|
}
|
||||||
@ -52,7 +52,7 @@ const WarmupConfirmModal = ({
|
|||||||
>
|
>
|
||||||
<Box gap="20px" display="flex" flexDirection="column" justifyContent="space-between" alignItems="center">
|
<Box gap="20px" display="flex" flexDirection="column" justifyContent="space-between" alignItems="center">
|
||||||
<Box display="flex" flexDirection="column">
|
<Box display="flex" flexDirection="column">
|
||||||
{warmupLength < 0
|
{warmupLength <= 0
|
||||||
? <FormControlLabel
|
? <FormControlLabel
|
||||||
control={
|
control={
|
||||||
<Checkbox
|
<Checkbox
|
||||||
@ -69,7 +69,7 @@ const WarmupConfirmModal = ({
|
|||||||
}
|
}
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
{warmupLength < 0 && <PrimaryButton fullWidth disabled={!isChecked} onClick={onSubmit}>
|
{warmupLength <= 0 && <PrimaryButton fullWidth disabled={!isChecked} onClick={onSubmit}>
|
||||||
Confirm
|
Confirm
|
||||||
</PrimaryButton>}
|
</PrimaryButton>}
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user