From 0a622bcb2e071131d5b4563680fe1526350d23fb Mon Sep 17 00:00:00 2001 From: tooomm Date: Mon, 31 Jan 2022 14:16:34 +0100 Subject: [PATCH] introduce linting error --- webclient/src/websocket/utils/passwordHasher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 => {