Skip to content

Commit

Permalink
fix: remove unneeded message
Browse files Browse the repository at this point in the history
  • Loading branch information
jurevans committed Sep 13, 2024
1 parent 8b22c91 commit 234a8bf
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions apps/faucet/src/App/Faucet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -265,18 +265,14 @@ export const FaucetForm: React.FC<Props> = ({ isTestnetLive }) => {
return (
<FaucetFormContainer>
<InputContainer>
{account && accounts.length > 0 ?
{account && accounts.length && (
<Select
data={accountsSelectData}
value={account.address}
label="Target"
onChange={(e) => setAccount(accountLookup[e.target.value])}
/>
: <div>
You have no signing accounts! Import or create an account in the
extension, then reload this page.
</div>
}
)}
</InputContainer>

<InputContainer>
Expand Down

0 comments on commit 234a8bf

Please sign in to comment.