Skip to content

Commit

Permalink
Update ConnectOverlay component to display connecting state and messages
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-vahn committed Apr 26, 2024
1 parent 7ff54e0 commit 60dfbb8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/connectOverlay/ConnectOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,15 @@ const ConnectOverlay: React.FC<Props> = ({
{connecting ? (
<>
<div>
<p>Connecting...</p>
<p style={{ color: 'black' }}>Connecting...</p>
</div>
<div>
<p>Connecting Wallet</p>
<p style={{ color: 'black' }}>Connecting Wallet</p>
</div>
<div>
<p>Please connect MetaMask & approve transaction</p>
<p style={{ color: 'black' }}>
Please connect MetaMask & approve transaction
</p>
</div>
</>
) : (
Expand Down

0 comments on commit 60dfbb8

Please sign in to comment.