Skip to content

Commit

Permalink
Hide error while loading on ClaimVestingModal (#3838) (#3842)
Browse files Browse the repository at this point in the history
Co-authored-by: Joystream Stats <dev@joystreamstats.live>
  • Loading branch information
traumschule and Joystream Stats authored Dec 12, 2022
1 parent 0348b49 commit 50442e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const ClaimVestingModal = () => {
<InputComponent
inputSize="l"
validation={canAfford ? undefined : 'invalid'}
message={canAfford ? '' : 'Insufficient balance to cover fee.'}
message={isReady ? (canAfford ? '' : 'Insufficient balance to cover fee.') : ''}
>
<SelectVestingAccount selected={selectedAccount} onChange={setSelectedAccount} />
</InputComponent>
Expand Down

2 comments on commit 50442e8

@vercel
Copy link

@vercel vercel bot commented on 50442e8 Dec 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 50442e8 Dec 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

pioneer-2 – ./

pioneer-2-joystream.vercel.app
pioneer-2.vercel.app
pioneer-2-git-dev-joystream.vercel.app

Please sign in to comment.