From 6c3b3fe111c0203ff1d34ac1cceadcf9b27e2ec2 Mon Sep 17 00:00:00 2001 From: "le_hooligan\\Yvng Alan" Date: Sun, 19 Nov 2023 17:45:50 -0500 Subject: [PATCH] Fixed lint error --- frontend/src/common/redux/userLogin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/common/redux/userLogin.ts b/frontend/src/common/redux/userLogin.ts index 40e5aac0..b1a4d80b 100644 --- a/frontend/src/common/redux/userLogin.ts +++ b/frontend/src/common/redux/userLogin.ts @@ -237,7 +237,7 @@ export const registerViaEmailAndPassword = createAsyncThunk< if (password !== passwordConfirmation) { return thunkAPI.rejectWithValue({ message: "Passwords do not match" - }) + }); } if (!firstName || firstName === "" || !isNameValid(firstName)) {