diff options
Fix translations whose substitutions params were not in arrays.
Diffstat (limited to 'ui/app/accounts')
-rw-r--r-- | ui/app/accounts/new-account/create-form.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/accounts/new-account/create-form.js b/ui/app/accounts/new-account/create-form.js index eb34f7a2f..8ef842a2a 100644 --- a/ui/app/accounts/new-account/create-form.js +++ b/ui/app/accounts/new-account/create-form.js @@ -14,7 +14,7 @@ class NewAccountCreateForm extends Component { this.state = { newAccountName: '', - defaultAccountName: t('newAccountNumberName', newAccountNumber), + defaultAccountName: t('newAccountNumberName', [newAccountNumber]), } } |