From 8fc51041b1efe4f84f281041acaea227a0b3df51 Mon Sep 17 00:00:00 2001 From: talkintomato Date: Sun, 15 Dec 2024 15:51:37 +0800 Subject: [PATCH] fix: space missing on create local account copy --- .../src/components/modals/CreateAccountModal.tsx | 2 +- upcoming-release-notes/3985.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 upcoming-release-notes/3985.md diff --git a/packages/desktop-client/src/components/modals/CreateAccountModal.tsx b/packages/desktop-client/src/components/modals/CreateAccountModal.tsx index 6ba131bf6dd..bb73dc2a3d5 100644 --- a/packages/desktop-client/src/components/modals/CreateAccountModal.tsx +++ b/packages/desktop-client/src/components/modals/CreateAccountModal.tsx @@ -204,7 +204,7 @@ export function CreateAccountModal({ upgradingAccountId }: CreateAccountProps) { - {t('Create a local account')} + {t('Create a local account')}{' '} {t( 'if you want to add transactions manually. You can also', )}{' '} diff --git a/upcoming-release-notes/3985.md b/upcoming-release-notes/3985.md new file mode 100644 index 00000000000..827aec6910b --- /dev/null +++ b/upcoming-release-notes/3985.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [talkintomato] +--- + +Fix space missing on create local account copy