Skip to content

Commit

Permalink
chores: fix style and text
Browse files Browse the repository at this point in the history
  • Loading branch information
KannuSingh committed Dec 20, 2024
1 parent bdd18d5 commit 0e3a364
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ function GiftDonutForm({
<UserRound className="w-4 h-4 absolute top-1/2 left-3 transform -translate-y-1/2 text-gray-500" />
<Input
type="text"
placeholder="Type ENS or address"
placeholder="Type address"
value={recipientAddress}
onChange={(e) => setRecipient(e.target.value)}
className="pl-10 pr-4 py-2 w-full rounded-s border h-16 bg-background"
className="px-10 py-2 w-full rounded-s border h-16 bg-background"
/>
<Copy className="w-4 h-4 absolute top-1/2 right-3 transform -translate-y-1/2 text-gray-500" />
</div>
Expand Down
6 changes: 3 additions & 3 deletions advanced/dapps/chain-abstraction-demo/data/EIP155Data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ export interface Token {

export const supportedNetworks: Network[] = [
{
name: "Arbitrum",
name: arbitrum.name,
icon: "/chain-logos/arbitrum.png",
chainId: arbitrum.id,
chain:arbitrum
},
{
name: "Base",
name: base.name,
icon: "/chain-logos/base.webp",
chainId: base.id,
chain:base
},
{
name: "Optimism",
name: optimism.name,
icon: "/chain-logos/eip155-10.png",
chainId: optimism.id,
chain:optimism
Expand Down

0 comments on commit 0e3a364

Please sign in to comment.