remove google auth endpoint

This commit is contained in:
Michael Fatemi 2021-08-17 02:24:19 -04:00
parent 5aef6896f4
commit c9faf04c90

View File

@ -1,7 +1,4 @@
import {
googleAuthorizationEndpoint,
ionAuthorizationEndpoint,
} from './Authentication/authorizationEndpoint';
import { ionAuthorizationEndpoint } from './Authentication/authorizationEndpoint';
import UILink from './UI/UILink';
import UIPrimaryTitle from './UI/UIPrimaryTitle';
@ -11,8 +8,8 @@ export default function WheelShareLoggedOut() {
<UIPrimaryTitle>WheelShare</UIPrimaryTitle>
<p>To get started, log in with your Ion account.</p>
<UILink href={ionAuthorizationEndpoint}>Log in with Ion</UILink>
<br />
<UILink href={googleAuthorizationEndpoint}>Log in with Google</UILink>
{/* <br />
<UILink href={googleAuthorizationEndpoint}>Log in with Google</UILink> */}
</>
);
}