From a1534066073f3197623565d597e5126a5c01bff9 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Wed, 5 Oct 2022 22:16:53 +0530 Subject: added client picker --- src/components/tables/client-table.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components/tables') diff --git a/src/components/tables/client-table.js b/src/components/tables/client-table.js index eb13308..cea612d 100644 --- a/src/components/tables/client-table.js +++ b/src/components/tables/client-table.js @@ -70,7 +70,7 @@ const ClientTable = (props) => {
-

Billing Address:

+

Billing Address:

{i.BillingAddress.Text}

{i.BillingAddress.City}, {i.BillingAddress.State} - {i.BillingAddress.PostalCode} ({i.BillingAddress.Country})

@@ -79,7 +79,7 @@ const ClientTable = (props) => {
{i.ShippingAddresses.map((j, id) =>
-

{`Shipping Address ${i.ShippingAddresses.length === 1 ? '' : id + 1}`}

+

{`Shipping Address ${i.ShippingAddresses.length === 1 ? '' : id + 1}:`}

{j.Text}

{j.City}, {j.State} - {j.PostalCode} ({j.Country})

-- cgit v1.2.3