Hide nicknames and notes on note to self

This commit is contained in:
Jamie Kyle 2024-03-28 15:28:50 -07:00 committed by GitHub
parent c14f5c4712
commit fc65917fc3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 22 additions and 6 deletions

View file

@ -25,7 +25,7 @@ import { UserText } from '../UserText';
import { Button, ButtonIconType, ButtonVariant } from '../Button';
import { isInSystemContacts } from '../../util/isInSystemContacts';
import { InContactsIcon } from '../InContactsIcon';
import { areNicknamesEnabled } from '../../util/nicknames';
import { canHaveNicknameAndNote } from '../../util/nicknames';
export type PropsDataType = {
areWeASubscriber: boolean;
@ -306,7 +306,7 @@ export function ContactModal({
)}
<div className="ContactModal__divider" />
<div className="ContactModal__button-container">
{areNicknamesEnabled() && !contact.isMe && (
{canHaveNicknameAndNote(contact) && (
<button
type="button"
className="ContactModal__button ContactModal__block"