From e8a2e04562cb098e6da372e50d42f9bcc9e30fa8 Mon Sep 17 00:00:00 2001 From: muerwre Date: Mon, 10 Dec 2018 12:31:13 +0700 Subject: [PATCH] auth: added console.log for debugging --- src/redux/user/sagas.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/redux/user/sagas.js b/src/redux/user/sagas.js index 4faeefa..db6a06a 100644 --- a/src/redux/user/sagas.js +++ b/src/redux/user/sagas.js @@ -104,6 +104,7 @@ function* loadMapSaga(path) { function* mapInitSaga() { const { hash } = getUrlData(); + console.log('got credentials', window.location); if (hash && /^#map/.test(hash)) { const [, newUrl] = hash.match(/^#map[:/?!](.*)$/);