From c4c27a48c292f7ea071210d63ce05db438ad9be9 Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Mon, 21 Jan 2019 20:58:19 +0200 Subject: [PATCH] fix `:contact.ui/close-contact-pressed` event Most likely a typo was introduced during refactoring. --- src/status_im/ui/screens/chat/views.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/ui/screens/chat/views.cljs b/src/status_im/ui/screens/chat/views.cljs index b52797c7bd..f24440bc10 100644 --- a/src/status_im/ui/screens/chat/views.cljs +++ b/src/status_im/ui/screens/chat/views.cljs @@ -41,7 +41,7 @@ [vector-icons/icon :icons/add {:color colors/blue}] [react/i18n-text {:style style/add-contact-text :key :add-to-contacts}]]] [react/touchable-highlight - {:on-press #(re-frame/dispatch [:contacts.ui/close-contact-pressed contact-identity]) + {:on-press #(re-frame/dispatch [:contact.ui/close-contact-pressed contact-identity]) :accessibility-label :add-to-contacts-close-button} [vector-icons/icon :icons/close {:color colors/black :container-style style/add-contact-close-icon}]]])))