Contact info modal for call link join requests
This commit is contained in:
parent
390eab2556
commit
84896d0fbb
19 changed files with 519 additions and 6 deletions
|
@ -38,6 +38,12 @@ const conversationWithAbout = getDefaultConversation({
|
|||
aboutText: '😀 About Me',
|
||||
hasMessages: true,
|
||||
});
|
||||
const conversationWithSharedGroups = getDefaultConversation({
|
||||
acceptedMessageRequest: true,
|
||||
aboutText: 'likes to chat',
|
||||
hasMessages: true,
|
||||
sharedGroupNames: ['Axolotl lovers'],
|
||||
});
|
||||
const systemContact = getDefaultConversation({
|
||||
acceptedMessageRequest: true,
|
||||
systemGivenName: 'Alice',
|
||||
|
@ -110,3 +116,13 @@ export function SystemContact(args: PropsType): JSX.Element {
|
|||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export function WithSharedGroups(args: PropsType): JSX.Element {
|
||||
return (
|
||||
<AboutContactModal
|
||||
{...args}
|
||||
conversation={conversationWithSharedGroups}
|
||||
isSignalConnection
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue