diff --git a/admin-spa/src/components/ui/dialog.tsx b/admin-spa/src/components/ui/dialog.tsx index 9dbeaa0..7d47744 100644 --- a/admin-spa/src/components/ui/dialog.tsx +++ b/admin-spa/src/components/ui/dialog.tsx @@ -19,7 +19,7 @@ const DialogOverlay = React.forwardRef<
-

{gateway.title}

+

{gateway.method_title || gateway.title}

{gateway.description && (

{gateway.description} @@ -230,7 +230,7 @@ export default function PaymentsPage() {

-

{gateway.title}

+

{gateway.method_title || gateway.title}

{gateway.enabled ? ( ● Enabled @@ -276,11 +276,11 @@ export default function PaymentsPage() { )} - {/* Other Gateways */} + {/* 3rd Party Gateways */} {otherGateways.length > 0 && (
{otherGateways.map((gateway: PaymentGateway) => ( @@ -294,10 +294,10 @@ export default function PaymentsPage() {
-

{gateway.title}

- {gateway.description && ( +

{gateway.method_title || gateway.title}

+ {gateway.method_description && (

- {gateway.description} + {gateway.method_description}

)}