diff --git a/frontend/src/components/LoginButton.js b/frontend/src/components/LoginButton.js index ed39ced..1bc603f 100644 --- a/frontend/src/components/LoginButton.js +++ b/frontend/src/components/LoginButton.js @@ -7,11 +7,9 @@ export default function LoginButton(props) { const [busy, setBusy] = React.useState(false) const onClick = React.useCallback(async (e) => { - console.log('aa') e.preventDefault() setBusy(true) const url = await api.makeLoginUrl() - console.log('go', url) window.location.href = url setBusy(false) }, [setBusy])