Skip to content

Commit

Permalink
Add connecting state and messages to ConnectOverlay component
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-vahn committed Apr 26, 2024
1 parent 32b8ad9 commit d4451b9
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/components/connectOverlay/ConnectOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,17 @@ const ConnectOverlay: React.FC<Props> = ({
</div>
<hr className="horizontal-line" />
{connecting ? (
<div>
<p>Connecting...</p>
</div>
<>
<div>
<p>Connecting...</p>
</div>
<div>
<p>Connecting Wallet</p>
</div>
<div>
<p>Please connect MetaMask & approve transaction</p>
</div>
</>
) : (
<>
<div className="choose-network-header">
Expand Down

0 comments on commit d4451b9

Please sign in to comment.