fix claim/redeem representation

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2026-03-23 13:01:26 +03:00
parent 57661ab6b1
commit 5b067f50f0
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{
"name": "ghost-dao-interface",
"private": true,
"version": "0.6.7",
"version": "0.6.8",
"type": "module",
"scripts": {
"dev": "vite",

View File

@ -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>