diff --git a/web/src/pages/Verify/Review/index.tsx b/web/src/pages/Verify/Review/index.tsx index 5b0d2a6..5f849ed 100644 --- a/web/src/pages/Verify/Review/index.tsx +++ b/web/src/pages/Verify/Review/index.tsx @@ -1,12 +1,15 @@ import { Button } from "@/components/ui/button"; -import { Input } from "@/components/ui/input"; import Avatar from "@/feature/Avatar"; import { useAuth } from "@/store/auth"; +import { useVerify } from "@/store/verify"; import type { FC } from "react"; const VerifyReviewPage: FC = () => { const profile = useAuth((s) => s.profile); + const verifying = useVerify((s) => s.verifying); + const finishVerify = useVerify((s) => s.verify); + return (
{profile?.email}