Skip to content

Commit

Permalink
refactor: Update ConnectOverlay component to use button element for d…
Browse files Browse the repository at this point in the history
…isconnect button
  • Loading branch information
daniel-vahn committed May 15, 2024
1 parent 9583615 commit acd7fa7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/connectOverlay/ConnectOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -378,12 +378,12 @@ const ConnectOverlay: React.FC<Props> = ({
{window.localStorage.getItem('walletProvider')}
</p>
</div>
<div
className="border border-red-300 rounded-xl py-4 px-6 bg-red-100"
<button
className="border border-red-300 rounded-xl py-4 px-6 bg-red-100 active:bg-red-200"
onClick={handleDisconnect}
>
<p className="text-base font-normal">Disconnect</p>
</div>
</button>
</div>
</div>
)}
Expand Down

0 comments on commit acd7fa7

Please sign in to comment.