From 46a9f9daba04f19da49af22c29720e130bafead7 Mon Sep 17 00:00:00 2001
From: muerwre <gotham48@gmail.com>
Date: Mon, 11 Feb 2019 18:03:35 +0700
Subject: [PATCH] fixed hash redirects

---
 src/redux/user/sagas.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/redux/user/sagas.js b/src/redux/user/sagas.js
index 718d788..6197fa2 100644
--- a/src/redux/user/sagas.js
+++ b/src/redux/user/sagas.js
@@ -131,6 +131,9 @@ function* mapInitSaga() {
 
     if (newUrl) {
       yield pushPath(`/${newUrl}`);
+      yield put(setReady(true));
+      hideLoader();
+      return;
     }
   }