Skip to content

Commit

Permalink
chore(teaks v5): apply v5 feedback changes (temporarily hide recover …
Browse files Browse the repository at this point in the history
…password) (#5985)
  • Loading branch information
paabloLC authored Dec 2, 2024
1 parent c8b8416 commit fdafb8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/components/auth/oss/auth-form.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";

import { zodResolver } from "@hookform/resolvers/zod";
import { Checkbox, Link } from "@nextui-org/react";
import { Link } from "@nextui-org/react";
import { useRouter } from "next/navigation";
import { useForm } from "react-hook-form";
import { z } from "zod";
Expand Down Expand Up @@ -183,7 +183,7 @@ export const AuthForm = ({
isInvalid={!!form.formState.errors.password}
/>

{type === "sign-in" && (
{/* {type === "sign-in" && (
<div className="flex items-center justify-between px-1 py-2">
<Checkbox name="remember" size="sm">
Remember me
Expand All @@ -192,7 +192,7 @@ export const AuthForm = ({
Forgot password?
</Link>
</div>
)}
)} */}
{type === "sign-up" && (
<>
<CustomInput
Expand Down

0 comments on commit fdafb8b

Please sign in to comment.