@samitouri / QOS-React / commits / 78da5becaf

[healthcheck] Remove console.error

ghstack-source-id: c06d44960cfb831e3dc8162858977c4ef619309d Pull Request resolved: https://github.com/facebook/react-forget/pull/2958

Lauren Tan committed May 11, 2024 at 00:20 UTC 78da5becaf1e705d0a4ae3fe84596f95d9202045
1 file changed +1 -3
compiler/packages/react-compiler-healthcheck/src/checks/reactCompiler.ts
+1 -3
@@ -99,9 +99,7 @@ function compile(sourceCode: string, filename: string) {
99 "typescript",
100 COMPILER_OPTIONS
101 );
102 - } catch (e) {
103 - console.error(e);
104 - }
102 + } catch {}
103 }
104
105 const JsFileExtensionRE = /(js|ts|jsx|tsx|mjs)$/;