diff --git a/src/status_im/ui/screens/profile/user/edit_picture.cljs b/src/status_im/ui/screens/profile/user/edit_picture.cljs index eda36083b0..c389b3a13f 100644 --- a/src/status_im/ui/screens/profile/user/edit_picture.cljs +++ b/src/status_im/ui/screens/profile/user/edit_picture.cljs @@ -13,11 +13,13 @@ :height crop-size}) (defn pick-pic [] + (re-frame/dispatch [:bottom-sheet/hide]) (react/show-image-picker #(re-frame/dispatch [::multiaccounts/save-profile-picture (.-path ^js %) 0 0 crop-size crop-size]) crop-opts)) (defn take-pic [] + (re-frame/dispatch [:bottom-sheet/hide]) (react/show-image-picker-camera #(re-frame/dispatch [::multiaccounts/save-profile-picture (.-path ^js %) 0 0 crop-size crop-size]) crop-opts))