From c9448656bf41d3a8c04ea8008fd3dd52ecf67027 Mon Sep 17 00:00:00 2001 From: Vladyslav Matsiiako Date: Tue, 13 Dec 2022 23:30:53 -0500 Subject: [PATCH] Fixed the TS error with signup invites --- frontend/pages/signupinvite.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/pages/signupinvite.js b/frontend/pages/signupinvite.js index 04ec73eb2..a41010aea 100644 --- a/frontend/pages/signupinvite.js +++ b/frontend/pages/signupinvite.js @@ -58,13 +58,13 @@ export default function SignupInvite() { } else { setLastNameError(false); } - errorCheck = passwordCheck( + errorCheck = passwordCheck({ password, setPasswordErrorLength, setPasswordErrorNumber, setPasswordErrorLowerCase, errorCheck - ); + }); if (!errorCheck) { // Generate a random pair of a public and a private key @@ -329,7 +329,7 @@ export default function SignupInvite() { It contains your Secret Key which we cannot access or recover for you if you lose it. -
+