Skip to content

Commit

Permalink
Fix button
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDmitry committed Jul 6, 2023
1 parent b96062e commit d33ae17
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/vest/VestDealTokens.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -558,5 +558,9 @@ function TransferActionButton({
tokenIds.length > 0 &&
!isHiddenPool(pool.poolAddress)

return <Button disabled={!canTransfer} onClick={onClick}></Button>
return (
<Button disabled={!canTransfer} onClick={onClick}>
Transfer
</Button>
)
}

0 comments on commit d33ae17

Please sign in to comment.