diff --git a/apps/storefront/src/pages/invoice/components/PaymentSuccess.tsx b/apps/storefront/src/pages/invoice/components/PaymentSuccess.tsx index f83a9672..33a800a2 100644 --- a/apps/storefront/src/pages/invoice/components/PaymentSuccess.tsx +++ b/apps/storefront/src/pages/invoice/components/PaymentSuccess.tsx @@ -72,7 +72,7 @@ function PaymentSuccessList({ list }: { list: InvoiceSuccessData }) { details, } = list - const memo = details?.paymentDetails?.memo || '' + const comment = details?.paymentDetails?.comment || '' const paymentSuccessKeys = [ { @@ -136,7 +136,7 @@ function PaymentSuccessList({ list }: { list: InvoiceSuccessData }) { maxHeight: '50px', }} > - {memo} + {comment} diff --git a/apps/storefront/src/types/invoice.ts b/apps/storefront/src/types/invoice.ts index 73af9ba7..7ac9ebad 100644 --- a/apps/storefront/src/types/invoice.ts +++ b/apps/storefront/src/types/invoice.ts @@ -109,6 +109,7 @@ export interface InvoiceSuccessData { details: { paymentDetails: { memo: string + comment: string } } paymentId: number