Skip to content

Commit

Permalink
fixed syntax issues so that it can pass lint test
Browse files Browse the repository at this point in the history
  • Loading branch information
jdufitum committed Sep 12, 2024
1 parent 8cbe5c5 commit ca065b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/src/client/register.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ define('forum/register', [
if (results.every(obj => obj.status === 'rejected')) {
showSuccess(usernameInput, username_notify, successIcon);
} else {
showError(usernameInput, username_notify, `[[error:username-taken, ${username}suffix]]`); }

showError(usernameInput, username_notify, `[[error:username-taken, ${username}suffix]]`);
}
callback();
});
}
Expand Down

0 comments on commit ca065b9

Please sign in to comment.