File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
src/app/(unauth)/verify-email Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,9 @@ import {
44 Head ,
55 Hr ,
66 Html ,
7- Img ,
87 Preview ,
98 Section ,
109 Text ,
11- Link ,
1210 Font ,
1311} from "@react-email/components" ;
1412import * as React from "react" ;
Original file line number Diff line number Diff line change 11"use client" ;
22
33import { useEffect , useState , Suspense } from "react" ;
4- import { useSearchParams , useRouter } from "next/navigation" ;
4+ import { useSearchParams } from "next/navigation" ;
55import { authClient } from "@/lib/auth/client" ;
66import { Button } from "@/components/ui/button" ;
77import { Loader2 , CheckCircle2 , XCircle } from "lucide-react" ;
@@ -10,7 +10,6 @@ import { toast } from "sonner";
1010
1111function VerifyEmailContent ( ) {
1212 const searchParams = useSearchParams ( ) ;
13- const router = useRouter ( ) ;
1413 const [ status , setStatus ] = useState < "loading" | "success" | "error" > ( "loading" ) ;
1514 const [ message , setMessage ] = useState ( "" ) ;
1615
You can’t perform that action at this time.
0 commit comments