From 59a9a63fb82c602917019d375543fa33822825fb Mon Sep 17 00:00:00 2001 From: Andrey Shovkoplyas Date: Sun, 16 Apr 2017 14:33:30 +0300 Subject: [PATCH] fixes https://github.com/status-im/status-react/issues/993 --- src/status_im/new_group/handlers.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/status_im/new_group/handlers.cljs b/src/status_im/new_group/handlers.cljs index 78e182cb5f..0f1c1c6b3b 100644 --- a/src/status_im/new_group/handlers.cljs +++ b/src/status_im/new_group/handlers.cljs @@ -81,7 +81,8 @@ (defn show-chat! [{:keys [new-chat]} _] - (dispatch [:navigation-replace :chat (:chat-id new-chat)])) + (dispatch [:navigate-to-clean :chat-list]) + (dispatch [:navigate-to :chat (:chat-id new-chat)])) (defn start-listen-group! [{:keys [new-chat web3 current-public-key]}]