From 2ab9e4e85e2973e79fb880c1824fe01e905b49f8 Mon Sep 17 00:00:00 2001 From: Julien Eluard Date: Sun, 25 Jun 2017 23:17:37 +0200 Subject: [PATCH] Clear Seq arguments before navigating back to chat. Fixes #1355 --- src/status_im/profile/handlers.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/status_im/profile/handlers.cljs b/src/status_im/profile/handlers.cljs index d90457f59c..8fced4802e 100644 --- a/src/status_im/profile/handlers.cljs +++ b/src/status_im/profile/handlers.cljs @@ -37,6 +37,7 @@ (register-handler :open-chat-with-the-send-transaction (u/side-effect! (fn [db [_ chat-id]] + (dispatch [:clear-seq-arguments]) (dispatch [:navigate-to :chat chat-id]) (js/setTimeout #(dispatch [:select-chat-input-command {:name "send"}]) 500))))