diff --git a/src/Components/Login.js b/src/Components/Login.js index ed6f717..7f4fd64 100644 --- a/src/Components/Login.js +++ b/src/Components/Login.js @@ -6,8 +6,8 @@ const Login = ({ onLogin }) => { // const clientId = process.env.REACT_APP_CLIENT_ID; const clientId = '667465f49c13fa9047715311'; - // const callbackUrl = 'https://codeboard.ccstiet.com/authverify'; - const callbackUrl = 'http://localhost:3000/authverify'; + const callbackUrl = 'https://codeboard.ccstiet.com/authverify'; + // const callbackUrl = 'http://localhost:3000/authverify'; const handleLogin = () => { const authUrl = `https://auth.ccstiet.com/auth/google?clientid=${clientId}&callback=${callbackUrl}`; window.location.href = authUrl;