remove unused section

This commit is contained in:
2026-05-24 15:53:56 +03:30
parent 75fa1a2fcf
commit 2db729c679
+1 -29
View File
@@ -124,35 +124,7 @@ const OrderDetail: FC = () => {
<p className="text-[13px] text-[#8C90A3] mt-0.5">ادمین ثبتکننده</p>
</div>
</div>
{/* جزئیات ایجادکننده */}
<div className="flex-1 min-w-0 border border-border border-opacity-30 rounded-xl bg-[#fafbfc] overflow-hidden">
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3">
<div className="px-4 py-3">
<p className="text-[13px] text-[#8C90A3] mb-1">نام</p>
<p className="text-sm text-black font-normal">{creator.firstName ?? '—'}</p>
</div>
<div className="px-4 py-3">
<p className="text-[13px] text-[#8C90A3] mb-1">نامخانوادگی</p>
<p className="text-sm text-black font-normal">{creator.lastName ?? '—'}</p>
</div>
<div className="px-4 py-3">
<p className="text-[13px] text-[#8C90A3] mb-1">موبایل</p>
<p className="text-sm text-black font-normal">{creator.phone ?? '—'}</p>
</div>
<div className="px-4 py-3">
<p className="text-[13px] text-[#8C90A3] mb-1">نقش</p>
<p className="text-sm text-black font-normal">{creator.role ?? '—'}</p>
</div>
<div className="px-4 py-3">
<p className="text-[13px] text-[#8C90A3] mb-1">شناسه کاربری</p>
<p className="text-sm text-black font-normal font-mono text-[13px]">{creator.id ?? '—'}</p>
</div>
<div className="px-4 py-3">
<p className="text-[13px] text-[#8C90A3] mb-1">تاریخ ایجاد حساب</p>
<p className="text-sm text-black font-normal">{creator.createdAt ? moment(creator.createdAt).format('jYYYY/jMM/jDD') : '—'}</p>
</div>
</div>
</div>
</div>
</div>
</section>