loan description state id 7
This commit is contained in:
@@ -87,7 +87,10 @@ const RequestCard = ({ item }) => {
|
||||
wordBreak: "break-word",
|
||||
}}
|
||||
>
|
||||
{`${t("LoanFollowUp.loan_description")}: ${item.latestHistory.expert_description}`}
|
||||
{`${t("LoanFollowUp.loan_description")}: ${item.latestHistory?.expert_description
|
||||
? item.latestHistory.expert_description
|
||||
: t("LoanFollowUp.loan_no_expert_description")
|
||||
}`}
|
||||
</Typography>
|
||||
)}
|
||||
{item.state_id === 7 && (
|
||||
@@ -101,7 +104,10 @@ const RequestCard = ({ item }) => {
|
||||
wordBreak: "break-word",
|
||||
}}
|
||||
>
|
||||
{`${t("LoanFollowUp.loan_description")}: درخواست وام توسط بانک تایید نشد (نیاز به اصلاح اطلاعات) `}
|
||||
{`${t("LoanFollowUp.loan_description")}: ${item.latestHistory?.expert_description
|
||||
? item.latestHistory.expert_description
|
||||
: t("LoanFollowUp.loan_no_expert_description")
|
||||
}`}
|
||||
</Typography>
|
||||
)}
|
||||
</Stack>
|
||||
|
||||
Reference in New Issue
Block a user