From 0ff8f5950fb5c758a9acc41d63ef98688f459524 Mon Sep 17 00:00:00 2001 From: Arman Date: Tue, 1 Apr 2025 14:28:30 +0300 Subject: [PATCH] chore(compiler-healthcheck): error message typo fix --- .../react-compiler-healthcheck/src/checks/reactCompiler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/packages/react-compiler-healthcheck/src/checks/reactCompiler.ts b/compiler/packages/react-compiler-healthcheck/src/checks/reactCompiler.ts index 309454851289f..24ca71b895ff4 100644 --- a/compiler/packages/react-compiler-healthcheck/src/checks/reactCompiler.ts +++ b/compiler/packages/react-compiler-healthcheck/src/checks/reactCompiler.ts @@ -90,7 +90,7 @@ function runBabelPluginReactCompiler( }); if (result?.code == null) { throw new Error( - `Expected BabelPluginReactForget to codegen successfully, got: ${result}`, + `Expected BabelPluginReactCompiler to codegen successfully, got: ${result}`, ); } return result;