From a878d8415b8ebf0cc449732d8ac28eb8da48afa1 Mon Sep 17 00:00:00 2001 From: Banks Nussman Date: Mon, 23 Sep 2024 22:35:04 -0400 Subject: [PATCH] fix typo --- api/src/routers/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/routers/auth.ts b/api/src/routers/auth.ts index 6e38f4a0..dec948ed 100644 --- a/api/src/routers/auth.ts +++ b/api/src/routers/auth.ts @@ -216,7 +216,7 @@ export const authRouter = router({ if (existingForgotPassword) { if (existingForgotPassword.time.getTime() + 18000 * 1000 < Date.now()) { - // The user's existing forgot password request has expired.' + // The user's existing forgot password request has expired. // We will delete it, and proceed with creating a new one. await db.delete(forgot_password).where(eq(forgot_password.id, existingForgotPassword.id)); } else {