Skip to content

Commit

Permalink
fix: wrongly formatted translation string
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarneo committed Jun 8, 2024
1 parent 8a20bcb commit 68fdbc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/routes/signin/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const SignIn = () => {

if (data.statusCode === 401) {
form.setErrors({
username: "{t('signin.wrong_credentials')}",
password: "{t('signin.wrong_credentials')}",
username: t('signin.wrong_credentials'),
password: t('signin.wrong_credentials'),
});

setSuccess(false);
Expand Down

0 comments on commit 68fdbc5

Please sign in to comment.