summaryrefslogtreecommitdiff
path: root/packages/integrations/react/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/react/src/index.ts')
-rw-r--r--packages/integrations/react/src/index.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/integrations/react/src/index.ts b/packages/integrations/react/src/index.ts
index 4ae6ea77f..37cfb1b6a 100644
--- a/packages/integrations/react/src/index.ts
+++ b/packages/integrations/react/src/index.ts
@@ -14,7 +14,9 @@ function getRenderer() {
jsxTransformOptions: async () => {
// @ts-expect-error types not found
const babelPluginTransformReactJsxModule = await import('@babel/plugin-transform-react-jsx');
- const jsx = babelPluginTransformReactJsxModule?.default?.default ?? babelPluginTransformReactJsxModule?.default;
+ const jsx =
+ babelPluginTransformReactJsxModule?.default?.default ??
+ babelPluginTransformReactJsxModule?.default;
return {
plugins: [
jsx(