fix: correct useAuthStore import path in ClientDetail

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Vadym Samoilenko 2026-04-27 15:45:24 +01:00
parent acdbb34b9b
commit 9af1ac3e95

View file

@ -8,7 +8,7 @@ import {
usePMs, useAssignPM, useRemovePM,
} from '../../hooks/useClients';
import { useUsers } from '../../hooks/useUsers';
import { useAuthStore } from '../../stores/authStore';
import { useAuthStore } from '../../lib/auth';
import { useToastContext } from '../../contexts/ToastContext';
import type { Team, Project } from '../../types/api';