diff --git a/yobble/Views/Chat/MessageProfileView.swift b/yobble/Views/Chat/MessageProfileView.swift index 7533f8f..994dd12 100644 --- a/yobble/Views/Chat/MessageProfileView.swift +++ b/yobble/Views/Chat/MessageProfileView.swift @@ -676,9 +676,13 @@ struct MessageProfileView: View { formatted ) } - + private var shouldShowRelationshipQuickActions: Bool { + if isDeletedUser { return false } + guard let relationship = currentChatProfile?.relationship else { return false } + + // показываем только если НЕ в контактах return !relationship.isTargetInContactsOfCurrentUser }