From 0ff38c7ca3ecf9027bbe35ec11574ae792f7183c Mon Sep 17 00:00:00 2001 From: theProton Date: Tue, 24 Sep 2024 03:25:23 -0400 Subject: [PATCH] web: fix text rendering in bug report confirmation dialog (#6573) Signed-off-by: parthiv-m Co-authored-by: Abdullah Atta --- apps/web/src/dialogs/issue-dialog.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/apps/web/src/dialogs/issue-dialog.tsx b/apps/web/src/dialogs/issue-dialog.tsx index 0d9d0134a..bdde9cc5e 100644 --- a/apps/web/src/dialogs/issue-dialog.tsx +++ b/apps/web/src/dialogs/issue-dialog.tsx @@ -151,10 +151,12 @@ function showIssueReportedDialog({ url }: { url: string }) { title: "Thank you for reporting!", positiveButtonText: "Copy link", message: `You can track your bug report at [${url}](${url}). - - Please note that we will respond to your bug report on the link above. **We recommended that you save the above link for later reference.** - - If your issue is critical (e.g. notes not syncing, crashes etc.), please [join our Discord community](https://discord.com/invite/zQBK97EE22) for one-to-one support.` + +\ +Please note that we will respond to your bug report on the link above. **We recommended that you save the above link for later reference.** + +\ +If your issue is critical (e.g. notes not syncing, crashes etc.), please [join our Discord community](https://discord.com/invite/zQBK97EE22) for one-to-one support.` }).then((result) => { result && writeText(url); });