修复入驻申请页面无邀请人报错bug

This commit is contained in:
yezian 2024-03-20 14:22:27 +08:00
parent 484ce3da37
commit 67f0daefed
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ const JoinContent = (props) => {
<p> <p>
邀请人 邀请人
<span className="text-red-400"> <span className="text-red-400">
{data.inviter.length > 0 ? data.inviter[0] : "无"} {data?.inviter?.length > 0 ? data.inviter[0] : "无"}
</span> </span>
</p> </p>
</div> </div>