From 136a6313cd0054ac1d413c0c690fd9fd9dd9ea50 Mon Sep 17 00:00:00 2001 From: andrey Date: Tue, 25 Jan 2022 14:18:16 +0100 Subject: [PATCH] [#13047] Profile QR code overlaps share menu during sharing (IOS) Signed-off-by: andrey --- src/status_im/ui/screens/profile/user/views.cljs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/status_im/ui/screens/profile/user/views.cljs b/src/status_im/ui/screens/profile/user/views.cljs index dfae3fe481..2f040ff097 100644 --- a/src/status_im/ui/screens/profile/user/views.cljs +++ b/src/status_im/ui/screens/profile/user/views.cljs @@ -53,7 +53,9 @@ address]]] [react/view styles/share-link-button [quo/button - {:on-press #(list-selection/open-share {:message link}) + {:on-press #(do + (re-frame/dispatch [:hide-popover]) + (list-selection/open-share {:message link})) :accessibility-label :share-my-contact-code-button} (i18n/label :t/share-link)]]])))