Skip to content

Commit

Permalink
[BUGFIX]: Fix string display in lockScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
mcayuelas-ledger committed Sep 29, 2023
1 parent 7d09425 commit 8580e0d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/four-camels-notice.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"ledger-live-desktop": patch
---

Fix string display in lockscreen
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,7 @@ export default function IsUnlocked({ children }: { children: React.ReactNode }):
icon={<Logo size={50} />}
/>
<PageTitle>{t("common.lockScreen.title")}</PageTitle>
<LockScreenDesc>
{t("common.lockScreen.subTitle")}
<br />
{t("common.lockScreen.description")}
</LockScreenDesc>
<LockScreenDesc>{t("common.lockScreen.description")}</LockScreenDesc>
<Box horizontal alignItems="center">
<Box
style={{
Expand Down
1 change: 0 additions & 1 deletion apps/ledger-live-desktop/static/i18n/en/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@
"tryAgain": "Try again",
"lockScreen": {
"title": "Welcome back",
"subTitle": null,
"description": "Enter your password to continue",
"inputPlaceholder": "Type your password",
"lostPassword": "I lost my password"
Expand Down

0 comments on commit 8580e0d

Please sign in to comment.