feat: reset verify states after completion

This commit is contained in:
2025-06-07 11:17:10 +02:00
parent ad635008eb
commit 70429f69a2
2 changed files with 20 additions and 16 deletions

View File

@ -2,7 +2,7 @@ import { Button } from "@/components/ui/button";
import Avatar from "@/feature/Avatar";
import { useAuth } from "@/store/auth";
import { useVerify } from "@/store/verify";
import type { FC } from "react";
import { type FC } from "react";
const VerifyReviewPage: FC = () => {
const profile = useAuth((s) => s.profile);
@ -38,7 +38,7 @@ const VerifyReviewPage: FC = () => {
disabled={verifying}
onClick={finishVerify}
>
Back Home
Finish
</Button>
</div>
);