You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/preserve-memo-validation/useMemo-constant-prop.expect.md
Copy file name to clipboardexpand all lines: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/preserve-memo-validation/useMemo-constant-prop.ts
Copy file name to clipboardexpand all lines: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/ternary-expression.expect.md
'React encountered a `<link rel="stylesheet" .../>` with a `precedence` prop and %s. The presence of loading and error handlers indicates an intent to manage the stylesheet loading state from your from your Component code and React will not hoist or deduplicate this stylesheet. If your intent was to have React hoist and deduplciate this stylesheet using the `precedence` prop remove the %s, otherwise remove the `precedence` prop.',
2500
2500
propDescription,
@@ -2669,8 +2669,8 @@ function pushStyle(
2669
2669
typeofchild==='function'
2670
2670
? 'a Function'
2671
2671
: typeofchild==='symbol'
2672
-
? 'a Sybmol'
2673
-
: 'an Array';
2672
+
? 'a Sybmol'
2673
+
: 'an Array';
2674
2674
console.error(
2675
2675
'React expect children of <style> tags to be a string, number, or object with a `toString` method but found %s instead. '+
2676
2676
'In browsers style Elements can only have `Text` Nodes as children.',
@@ -3337,8 +3337,8 @@ function pushScriptImpl(
3337
3337
typeofchildren==='number'
3338
3338
? 'a number for children'
3339
3339
: Array.isArray(children)
3340
-
? 'an array for children'
3341
-
: 'something unexpected for children';
3340
+
? 'an array for children'
3341
+
: 'something unexpected for children';
3342
3342
console.error(
3343
3343
'A script element was rendered with %s. If script element has children it must be a single string.'+
3344
3344
' Consider using dangerouslySetInnerHTML or passing a plain string as children.',
@@ -5436,8 +5436,8 @@ function preconnect(href: string, crossOrigin: ?CrossOriginEnum) {
0 commit comments