[FE-COMP-003] fix: Add missing currentUser import in UserProfilePage

This commit is contained in:
senke 2025-12-24 14:34:10 +01:00
parent 56b8f7419c
commit 9348d107cd

View file

@ -18,6 +18,7 @@ import { Button } from '@/components/ui/button';
export function UserProfilePage() {
const { username } = useParams<{ username: string }>();
const { user: currentUser } = useAuthStore();
const {
data: profile,