From cee885a84d44b78264e7530ac130bddc6caa215b Mon Sep 17 00:00:00 2001 From: LandaMm Date: Sat, 7 Jun 2025 19:17:39 +0200 Subject: [PATCH] feat: remove unused access to user profile --- web/src/pages/Verify/index.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/web/src/pages/Verify/index.tsx b/web/src/pages/Verify/index.tsx index d53c02e..a27f89d 100644 --- a/web/src/pages/Verify/index.tsx +++ b/web/src/pages/Verify/index.tsx @@ -1,12 +1,9 @@ import { Button } from "@/components/ui/button"; -import { useAuth } from "@/store/auth"; import { ArrowRight } from "lucide-react"; import type { FC } from "react"; import { Link } from "react-router"; const VerifyStartPage: FC = () => { - const profile = useAuth((s) => s.profile); - return (
icon