diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fe34a70e5..149fcfbc18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ * Shorter dots-placeholder for invite link +* Display a shorter invite link on a mobile + * Removed registration attempts selector and corresponding usage. * Revert adjusting bootstrap scripts for developing on Windows diff --git a/packages/mobile/src/components/ContextMenu/menus/InvitationContextMenu.container.tsx b/packages/mobile/src/components/ContextMenu/menus/InvitationContextMenu.container.tsx index c092fbc895..95fd7a633b 100644 --- a/packages/mobile/src/components/ContextMenu/menus/InvitationContextMenu.container.tsx +++ b/packages/mobile/src/components/ContextMenu/menus/InvitationContextMenu.container.tsx @@ -82,7 +82,7 @@ export const InvitationContextMenu: FC = () => { title={'Add members'} items={items} hint={'Anyone with Quiet app can follow this link to join this community. Only share with people you trust.'} - link={invitationLink} + link={invitationLink.slice(0, 35) + '...'} linkAction={copyLink} {...invitationContextMenu} />