diff --git a/.changelog/1950.bugfix.md b/.changelog/1950.bugfix.md new file mode 100644 index 0000000000..0cf9d94f09 --- /dev/null +++ b/.changelog/1950.bugfix.md @@ -0,0 +1 @@ +Stop settings dialog resizing when clicking "Add contact" diff --git a/src/app/components/Toolbar/Features/Contacts/index.tsx b/src/app/components/Toolbar/Features/Contacts/index.tsx index 71ac917390..4c8d9a10f7 100644 --- a/src/app/components/Toolbar/Features/Contacts/index.tsx +++ b/src/app/components/Toolbar/Features/Contacts/index.tsx @@ -62,27 +62,29 @@ export const Contacts = ({ closeHandler }: ContactsProps) => { } return ( - - {!contacts.length && ( - - {t('toolbar.contacts.emptyList', 'You have no contacts yet.')} - - )} - {!!contacts.length && ( - - {contacts.map(contact => ( - - ))} - - )} - -