From 48e783c4fafb9bb394564d4eefa2944b0d9f7e3b Mon Sep 17 00:00:00 2001 From: Furquan Anwer <44668513+FurquanAnwer@users.noreply.github.com> Date: Sat, 9 Aug 2025 00:06:38 +0530 Subject: [PATCH] fix(ui): remove line break in all IMAP section subtitles (#13785) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR removes the unintended line break in all IMAP section subtitles so the text reads as a single inline paragraph. ✅ No functional changes ✅ Purely UI/text formatting fix Closes #13783 Co-authored-by: Charles Bochet --- .../components/SettingsAccountsConnectionForm.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/packages/twenty-front/src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx b/packages/twenty-front/src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx index b95f004c506..cc3dfa3690d 100644 --- a/packages/twenty-front/src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx +++ b/packages/twenty-front/src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx @@ -104,8 +104,7 @@ export const SettingsAccountsConnectionForm = ({ {t`IMAP Configuration`} - {t`Configure IMAP settings to receive and sync your emails.`} -
+ {t`Configure IMAP settings to receive and sync your emails.`}{' '} {t`Leave blank if you don't need to import emails.`}
@@ -187,8 +186,7 @@ export const SettingsAccountsConnectionForm = ({ {t`SMTP Configuration`} - {t`Configure SMTP settings to send emails from your account.`} -
+ {t`Configure SMTP settings to send emails from your account.`}{' '} {t`Leave blank if you don't need to send emails.`}
@@ -270,8 +268,7 @@ export const SettingsAccountsConnectionForm = ({ {t`CalDAV Configuration`} - {t`Configure CalDAV settings to sync your calendar events.`} -
+ {t`Configure CalDAV settings to sync your calendar events.`}{' '} {t`Leave blank if you don't need calendar sync.`}