From 7b4f9ba537264114e895e462ced04fd6eb961178 Mon Sep 17 00:00:00 2001 From: Alan Date: Thu, 21 Sep 2023 22:06:32 -0700 Subject: [PATCH] Fix nit changes --- apps/web/pages/api/auth/signup.ts | 9 +++++---- apps/web/pages/auth/login.tsx | 5 ++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/web/pages/api/auth/signup.ts b/apps/web/pages/api/auth/signup.ts index 0fa312d118..f1e4bfc0a7 100644 --- a/apps/web/pages/api/auth/signup.ts +++ b/apps/web/pages/api/auth/signup.ts @@ -1,7 +1,7 @@ import type { NextApiResponse } from "next"; import calcomSignupHandler from "@calcom/feature-auth/signup/handlers/calcomHandler"; -import selfhostedSignupHandler from "@calcom/feature-auth/signup/handlers/selfHostedHandler"; +import selfHostedSignupHandler from "@calcom/feature-auth/signup/handlers/selfHostedHandler"; import { type RequestWithUsernameStatus } from "@calcom/features/auth/signup/username"; import { IS_CALCOM } from "@calcom/lib/constants"; import { HttpError } from "@calcom/lib/http-error"; @@ -30,8 +30,9 @@ export default async function handler(req: RequestWithUsernameStatus, res: NextA ensureReqIsPost(req); ensureSignupIsEnabled(); - /** Im not sure its worth merging these two handlers. They are different enough to be separate. - * Calcom handles things like creating a stripe customer - which we dont need to do for self hosted. + /** + * Im not sure its worth merging these two handlers. They are different enough to be separate. + * Calcom handles things like creating a stripe customer - which we don't need to do for self hosted. * It also handles things like premium username. * TODO: (SEAN) - Extract a lot of the logic from calcomHandler into a separate file and import it into both handlers. */ @@ -39,7 +40,7 @@ export default async function handler(req: RequestWithUsernameStatus, res: NextA return await calcomSignupHandler(req, res); } - return await selfhostedSignupHandler(req, res); + return await selfHostedSignupHandler(req, res); } catch (e) { if (e instanceof HttpError) { return res.status(e.statusCode).json({ message: e.message }); diff --git a/apps/web/pages/auth/login.tsx b/apps/web/pages/auth/login.tsx index b3dd7772a3..ef258adbd6 100644 --- a/apps/web/pages/auth/login.tsx +++ b/apps/web/pages/auth/login.tsx @@ -5,7 +5,6 @@ import type { GetServerSidePropsContext } from "next"; import { getCsrfToken, signIn } from "next-auth/react"; import Link from "next/link"; import { useRouter, useSearchParams } from "next/navigation"; -import { NextLink } from "next/link"; import type { CSSProperties } from "react"; import { useState } from "react"; import { FormProvider, useForm } from "react-hook-form"; @@ -96,9 +95,9 @@ export default function Login({ callbackUrl = safeCallbackUrl || ""; const LoginFooter = ( - + {t("dont_have_an_account")} - + ); const TwoFactorFooter = (