Preparing the repository

This commit is contained in:
charles-gauthereau
2025-01-02 18:10:07 +01:00
parent 5764c2c91e
commit 55b7c4d80d
2 changed files with 3 additions and 3 deletions
@@ -76,7 +76,7 @@ export const LoginForm = (props: loginFormProps) => {
<div className="flex items-center">
<FormLabel>Password</FormLabel>
<Link
href="/forgot-password"
href={"/forgot-password"}
className="ml-auto inline-block text-sm underline"
>
Forgot your password?
@@ -94,7 +94,7 @@ export const LoginForm = (props: loginFormProps) => {
</Button>
<div className="mt-4 text-center text-sm">
Don&apos;t have an account?{" "}
<Link href="/register" className="underline">
<Link href={"/register"} className="underline">
Sign up
</Link>
</div>
@@ -9,7 +9,7 @@ export type SocialAuthButtonProps = {}
export const SocialAuthButton = (props: SocialAuthButtonProps) => {
return (
<div className="flex flex-col gap-4 mt-5">
{env.NEXT_PUBLIC_GOOGLE_AUTH === "true" ?
{process.env.NEXT_PUBLIC_GOOGLE_AUTH == 'true' ?
<Button
onClick={(e) => {
e.preventDefault();