diff --git a/webclient/src/websocket/utils/passwordHasher.ts b/webclient/src/websocket/utils/passwordHasher.ts index 77645694f..068ce3662 100644 --- a/webclient/src/websocket/utils/passwordHasher.ts +++ b/webclient/src/websocket/utils/passwordHasher.ts @@ -22,7 +22,7 @@ export const generateSalt = (): string => { salt += characters.charAt(Math.floor(Math.random() * characters.length)); } - return salt; + return salt; } export const passwordSaltSupported = (serverOptions, webClient): number => {