diff --git a/src/entities/transaction/ui/list-item.tsx b/src/entities/transaction/ui/list-item.tsx index 387761b..e8e7296 100644 --- a/src/entities/transaction/ui/list-item.tsx +++ b/src/entities/transaction/ui/list-item.tsx @@ -115,10 +115,10 @@ export const ListItem = ({ } } else if(transactionCategory === TransactionCategory.CashReceipt){ - str = `${customerName}(${issueNumber})` + str = `${customerName? customerName: '익명'}${issueNumber? '('+issueNumber+')': '' }` } else if(transactionCategory === TransactionCategory.Escrow){ - str = `${customerName}(${issueNumber})` + str = `${customerName? customerName: '익명'}${issueNumber? '('+issueNumber+')': '' }` } else if(transactionCategory === TransactionCategory.Billing){ str = `${billKey}` diff --git a/src/pages/transaction/escrow/detail-page.tsx b/src/pages/transaction/escrow/detail-page.tsx index ff3b2f3..f401ec4 100644 --- a/src/pages/transaction/escrow/detail-page.tsx +++ b/src/pages/transaction/escrow/detail-page.tsx @@ -179,12 +179,12 @@ export const EscrowDetailPage = () => { isOpen={ showSettlementInfo } onClickToOpenInfo={ (infoSectionKey) => onClickToOpenInfo(infoSectionKey) } > +
onClickToOpenInfo(infoSectionKey) } > -