diff --git a/web/src/components/Home/Tabs/PersonalInfo.tsx b/web/src/components/Home/Tabs/PersonalInfo.tsx index 223f998..82456d2 100644 --- a/web/src/components/Home/Tabs/PersonalInfo.tsx +++ b/web/src/components/Home/Tabs/PersonalInfo.tsx @@ -1,8 +1,11 @@ import Avatar from "@/feature/Avatar"; +import { useAuth } from "@/store/auth"; import { ChevronRight } from "lucide-react"; import { type FC } from "react"; const PersonalInfo: FC = () => { + const profile = useAuth((state) => state.profile); + return ( <>

@@ -47,7 +50,9 @@ const PersonalInfo: FC = () => {

Name

-

Amir Adal

+

+ {profile?.full_name} +