From 989b2947918b60cf37eec3006acee9d94109da69 Mon Sep 17 00:00:00 2001 From: Paul Bienkowski Date: Tue, 30 Nov 2021 19:54:18 +0100 Subject: [PATCH] remove debug logs --- frontend/src/components/LoginButton.js | 2 -- 1 file changed, 2 deletions(-) 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])