From 382f9de2032990f27e40f17aa3db2ab5ed40effd Mon Sep 17 00:00:00 2001 From: elforjani3 Date: Sun, 12 Sep 2021 14:45:33 +0200 Subject: [PATCH] BIG-44: fix View Detail Customer. --- .../src/containers/Customers/CustomersLanding/CustomersTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/containers/Customers/CustomersLanding/CustomersTable.js b/client/src/containers/Customers/CustomersLanding/CustomersTable.js index 9205ee93a..7cdf61560 100644 --- a/client/src/containers/Customers/CustomersLanding/CustomersTable.js +++ b/client/src/containers/Customers/CustomersLanding/CustomersTable.js @@ -92,7 +92,7 @@ function CustomersTable({ // Handle view detail contact. const handleViewDetailCustomer = ({ id }) => { - openDrawer('contact-detail-drawer', { customerId: id }); + openDrawer('customer-details-drawer', { customerId: id }); }; // Handle cell click.