From 3acf1ab66361213353f33cf45db0765b492e3b68 Mon Sep 17 00:00:00 2001 From: Manan Jadhav Date: Fri, 5 Jul 2024 02:08:02 +0530 Subject: [PATCH] refactor: run prettier --- .../netsuite/import/NetSuiteImportCustomersOrProjectsPage.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/workspace/accounting/netsuite/import/NetSuiteImportCustomersOrProjectsPage.tsx b/src/pages/workspace/accounting/netsuite/import/NetSuiteImportCustomersOrProjectsPage.tsx index e4dc6ff40114..0192c41beb33 100644 --- a/src/pages/workspace/accounting/netsuite/import/NetSuiteImportCustomersOrProjectsPage.tsx +++ b/src/pages/workspace/accounting/netsuite/import/NetSuiteImportCustomersOrProjectsPage.tsx @@ -41,7 +41,8 @@ function NetSuiteImportCustomersOrProjectsPage({policy}: WithPolicyConnectionsPr newValue = CONST.INTEGRATION_ENTITY_MAP_TYPES.NETSUITE_DEFAULT; } else { // when we enable any field, and if the other one already has a value set, we should set that, - const otherFieldValue = importField === CONST.NETSUITE_CONFIG.SYNC_OPTIONS.CUSTOMER_MAPPINGS.JOBS ? config?.syncOptions?.mapping?.customers : config?.syncOptions?.mapping?.jobs; + const otherFieldValue = + importField === CONST.NETSUITE_CONFIG.SYNC_OPTIONS.CUSTOMER_MAPPINGS.JOBS ? config?.syncOptions?.mapping?.customers : config?.syncOptions?.mapping?.jobs; if (otherFieldValue === CONST.INTEGRATION_ENTITY_MAP_TYPES.NETSUITE_DEFAULT) { newValue = CONST.INTEGRATION_ENTITY_MAP_TYPES.TAG; } else {