refactor: enhance representation info fetching and pass it to relevant components

This commit is contained in:
hamed
2025-12-02 15:38:42 +03:30
parent e6cb27a714
commit 3ca69dcd0f
5 changed files with 51 additions and 15 deletions
+2 -2
View File
@@ -2,14 +2,14 @@ import Head from "./Head";
import Date from "./Date";
import Activities from "./Activities";
function UserDetail({ data, loading }) {
function UserDetail({ data, loading, representationInfo }) {
return (
<div className="hidden xl:flex min-w-[332px] h-full opacity-page">
<div
className="min-w-[332px] p-[24px] border-0 border-r border-r-[#EFEFEF] h-full items-start fixed top-0 left-0
g-[#FFF] py-[40px] px-[16px] bg-[#FFF] dark:bg-[#222433] dark:border-transparent"
>
<Head data={data} loading={loading} />
<Head data={data} loading={loading} representationInfo={representationInfo} />
<span className="block w-full h-px bg-[#EFEFEF] px-[22px] mt-[13px] mb-[16px] dark:bg-[#343645]"></span>
<Date />
<Activities data={data} loading={loading} />