mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-25 02:48:23 +01:00
Fetch PNI group credentials
This commit is contained in:
@@ -115,9 +115,9 @@ export const ChooseGroupMembersModal: FunctionComponent<PropsType> = ({
|
||||
contact => contact.username === username
|
||||
);
|
||||
|
||||
isUsernameVisible = candidateContacts.every(
|
||||
contact => contact.username !== username
|
||||
);
|
||||
isUsernameVisible =
|
||||
Boolean(username) &&
|
||||
candidateContacts.every(contact => contact.username !== username);
|
||||
}
|
||||
|
||||
const inputRef = useRef<null | HTMLInputElement>(null);
|
||||
|
||||
Reference in New Issue
Block a user