Skip to content

Commit

Permalink
Fix translation string
Browse files Browse the repository at this point in the history
  • Loading branch information
nop33 committed Jan 8, 2025
1 parent 6ef963f commit 974b233
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/extension/locales/en-US/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@
"Got it": "Got it",
"Could not add new account": "Could not add new account",
"Could not discover active accounts for {{ networkId }}.": "Could not discover active accounts for {{ networkId }}.",
"Could add new ledger account": "Could add new ledger account",
"Could not add new ledger account": "Could not add new ledger account",
"Rejected": "Rejected",
"Could not delete account": "Could not delete account",
"Could not upgrade account": "Could not upgrade account",
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/src/ui/services/backgroundAccounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const importNewLedgerAccount = async (account: WalletAccount) => {
waitForMessage("ALPH_NEW_LEDGER_ACCOUNT_REJ").then(() => "error" as const),
])
} catch {
throw Error(i18n.t("Could add new ledger account"))
throw Error(i18n.t("Could not add new ledger account"))
}
}

Expand Down

0 comments on commit 974b233

Please sign in to comment.