Skip to content

Commit

Permalink
feat: Remove text from popup (#243)
Browse files Browse the repository at this point in the history
Remove text from popup

Co-authored-by: Diana Fulga <[email protected]>
  • Loading branch information
dianafulga and Diana Fulga authored May 7, 2024
1 parent 1f551d6 commit 625d7aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/popup/components/ConnectWalletForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const ConnectWalletForm = ({ publicKey }: ConnectWalletFormProps) => {
className="space-y-4"
>
<div className="space-y-2">
<Label className="text-base font-medium">Step 1 - Public key</Label>
<Label className="text-base font-medium">Public key</Label>
<p className="px-2 text-xs">
Get a wallet address from a provider before connecting it below.
Please find a list of available wallets{' '}
Expand All @@ -94,7 +94,7 @@ export const ConnectWalletForm = ({ publicKey }: ConnectWalletFormProps) => {
</div>
<Input
type="url"
label="Step 2 - Wallet address"
label="Wallet address"
disabled={connected}
placeholder="https://ilp.rafiki.money/johndoe"
errorMessage={errors.walletAddressUrl?.message}
Expand All @@ -110,7 +110,7 @@ export const ConnectWalletForm = ({ publicKey }: ConnectWalletFormProps) => {
inputMode="numeric"
disabled={connected}
addOn={currencySymbol.symbol}
label="Step 3 - Amount"
label="Amount"
description="Enter the amount to use from your wallet."
placeholder="5.00"
onKeyDown={(e) => {
Expand Down

0 comments on commit 625d7aa

Please sign in to comment.