Skip to content

Commit

Permalink
moves the error to the correct component
Browse files Browse the repository at this point in the history
  • Loading branch information
peetzweg committed Apr 9, 2024
1 parent 5e02f5a commit 4aa060e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/components/instantiate/Step1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ export function Step1() {
help="The account to use for this instantiation. The fees and storage deposit will be deducted from this account."
id="accountId"
label="Account"
isError={isAccountAvailable === false}
message="Selected Account is not available to sign extrinsics."
>
<AccountSelect
className="mb-2"
id="accountId"
isError={isAccountAvailable === false}
message="Selected Account is not available to sign extrinsics."
onChange={setAccountId}
value={accountId}
/>
Expand Down

0 comments on commit 4aa060e

Please sign in to comment.