Skip to content

Commit d2d1de4

Browse files
committed
Fix
1 parent d1366af commit d2d1de4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web/lib/firebase/users.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {getAuth, GoogleAuthProvider, signInWithPopup} from 'firebase/auth'
55

66
import {safeLocalStorage} from '../util/local'
77
import {app} from './init'
8-
import {IS_LOCAL, WEB_URL} from "common/envs/constants";
8+
import {IS_LOCAL} from "common/envs/constants";
99
import {GOOGLE_CLIENT_ID} from "common/constants";
1010

1111
dayjs.extend(utc)
@@ -86,7 +86,7 @@ export async function webviewGoogleSignin() {
8686

8787
const params = new URLSearchParams({
8888
client_id: GOOGLE_CLIENT_ID,
89-
redirect_uri: `${WEB_URL}/auth/callback`,
89+
redirect_uri: `https://compassmeet.com/auth/callback`,
9090
response_type: 'code',
9191
scope: 'openid email profile',
9292
code_challenge: codeChallenge,

0 commit comments

Comments
 (0)