Refactor: move useAuth from store/ into hooks/

store/ folder removed — single file doesn't justify its own folder.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Dianaka123
2026-02-26 20:41:49 +03:00
parent 9fcd7c1d63
commit 5b7260de84
9 changed files with 355 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
"use client";
import { useRouter } from "next/navigation";
import { useAuth } from "@/store/useAuth";
import { useAuth } from "@/hooks/useAuth";
import { Avatar, AvatarFallback } from "@/components/ui/avatar";
import { Button } from "@/components/ui/button";
import { Badge } from "@/components/ui/badge";