From 60604e0281163c8ca37438a98283b9b19e723229 Mon Sep 17 00:00:00 2001 From: Farmin Farzin Date: Tue, 23 Jan 2018 12:37:33 +0100 Subject: [PATCH] signInWithRedirect --- src/actions/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/auth.js b/src/actions/auth.js index c1e4162..83e2595 100644 --- a/src/actions/auth.js +++ b/src/actions/auth.js @@ -10,7 +10,7 @@ export const startLoginGoogle = () => { //return firebase.auth().signInWithRedirect(googleAuthProvider); return firebase .auth() - .signInWithPopup(googleAuthProvider); + .signInWithRedirect(googleAuthProvider); }; };