From 3dbbd2a27e7a667c98ada30e6b41ef79d86578a4 Mon Sep 17 00:00:00 2001 From: Vit Horacek Date: Mon, 8 Jul 2024 21:48:06 +0100 Subject: [PATCH] Skip react compiler --- .../netsuite/advanced/NetSuiteApprovalAccountSelectPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/workspace/accounting/netsuite/advanced/NetSuiteApprovalAccountSelectPage.tsx b/src/pages/workspace/accounting/netsuite/advanced/NetSuiteApprovalAccountSelectPage.tsx index ed823d698d2f..47021e5a186e 100644 --- a/src/pages/workspace/accounting/netsuite/advanced/NetSuiteApprovalAccountSelectPage.tsx +++ b/src/pages/workspace/accounting/netsuite/advanced/NetSuiteApprovalAccountSelectPage.tsx @@ -27,7 +27,7 @@ function NetSuiteApprovalAccountSelectPage({policy}: WithPolicyConnectionsProps) const netsuiteApprovalAccountOptions = useMemo( () => getNetSuiteApprovalAccountOptions(policy ?? undefined, config?.approvalAccount), // The default option will be language dependent, so we need to recompute the options when the language changes - // eslint-disable-next-line react-hooks/exhaustive-deps + // eslint-disable-next-line react-compiler/react-compiler, react-hooks/exhaustive-deps [config?.approvalAccount, policy, translate], );