make emergency withdraw available when is not claimable

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2026-05-03 17:09:14 +03:00
parent 7a14ace641
commit b11330bd23
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -275,7 +275,7 @@ const ActionButtons = ({ setConfirmationModalOpen, isSmallScreen = false, isClai
fullWidth={isSmallScreen}
sx={{ flexGrow: 1 }}
onClick={() => setConfirmationModalOpen(true)}
disabled={isClaimable}
disabled={!isClaimable}
>
Emergency Withdrawal
</SecondaryButton>