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",
|
||||
"private": true,
|
||||
"version": "0.6.7",
|
||||
"version": "0.6.8",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@ -44,7 +44,7 @@ const WarmupConfirmModal = ({
|
||||
minHeight="150px"
|
||||
open={isOpen}
|
||||
headerText={
|
||||
warmupLength < 0
|
||||
warmupLength <= 0
|
||||
? "Bond Notification"
|
||||
: "Bond in Warm-up"
|
||||
}
|
||||
@ -52,7 +52,7 @@ const WarmupConfirmModal = ({
|
||||
>
|
||||
<Box gap="20px" display="flex" flexDirection="column" justifyContent="space-between" alignItems="center">
|
||||
<Box display="flex" flexDirection="column">
|
||||
{warmupLength < 0
|
||||
{warmupLength <= 0
|
||||
? <FormControlLabel
|
||||
control={
|
||||
<Checkbox
|
||||
@ -69,7 +69,7 @@ const WarmupConfirmModal = ({
|
||||
}
|
||||
</Box>
|
||||
|
||||
{warmupLength < 0 && <PrimaryButton fullWidth disabled={!isChecked} onClick={onSubmit}>
|
||||
{warmupLength <= 0 && <PrimaryButton fullWidth disabled={!isChecked} onClick={onSubmit}>
|
||||
Confirm
|
||||
</PrimaryButton>}
|
||||
</Box>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user