diff --git a/src/status_im/profile/screen.cljs b/src/status_im/profile/screen.cljs index 1b4173e5a2..a450bcdbd1 100644 --- a/src/status_im/profile/screen.cljs +++ b/src/status_im/profile/screen.cljs @@ -40,7 +40,8 @@ (defn profile-toolbar [contact] [toolbar - (when-not (:pending? contact) + (when (and (not (:pending? contact)) + (not (:unremovable? contact))) {:actions [(act/opts [{:value #(dispatch [:hide-contact contact]) :text (label :t/remove-from-contacts)}])]})])