Skip to content

Commit

Permalink
Revert "chore: inform users about gmail issues" (#568)
Browse files Browse the repository at this point in the history
This reverts commit 9eb0205.
  • Loading branch information
aalemayhu authored Jul 14, 2024
1 parent fcf75c8 commit f261c62
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/components/forms/WithGoogleLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,10 @@ interface WithGoogleLinkProps {
}

export function WithGoogleLink({ text }: WithGoogleLinkProps) {
return <div>
<div className="notification is-info is-small">
<p>Google sign is currently disabled, please register or use forgotten password</p>
</div>
<a href={getGoogleSignInUrl()} className="button is-fullwidth">
return <a href={getGoogleSignInUrl()} className="button is-fullwidth">
<span className="icon">
<i className="fab fa-google" />
</span>
<span>{text}</span>
</a>
</div>;
<span>{text}</span>
</a>;
}

0 comments on commit f261c62

Please sign in to comment.