Skip to content

Commit

Permalink
fix googl
Browse files Browse the repository at this point in the history
  • Loading branch information
KamyarTaher committed Aug 4, 2024
1 parent 3ba7e59 commit 2cf771b
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/app/components/NavigationBar/ModalContents/LinkWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,6 @@ export function LinkWallet() {
All good! You already have a reward address linked.
</h1>
<div className="flex justify-center mt-6 mb-6 flex-col text-center gap-4">
{/* {googleID?.length < 5 ? (
<LoginButton
onlyGoogleLogin
setIsGoogleLoggedIn={setIsGoogleLoggedIn}
/>
) : (
<p className="text-white">Connected with Google</p>
)} */}
<p className="text-white">Reward address: {rewardAddress}</p>
</div>
</div>
Expand All @@ -89,7 +81,7 @@ export function LinkWallet() {
1) Login to the Google account you used during the event:
</h2>
<div className="flex justify-center mt-6 mb-6">
{googleID?.length > 5 ? (
{!(googleID?.length > 5) ? (
<LoginButton onlyGoogleLogin />
) : (
<p className="text-white">Already connected with Google</p>
Expand Down

0 comments on commit 2cf771b

Please sign in to comment.