mirror of
https://github.com/facebook/react.git
synced 2026-02-23 20:23:02 +00:00
Rename renderToMarkup to renderToHTML (#30689)
This commit is contained in:
committed by
GitHub
parent
e0a0e65412
commit
5c9243d153
@@ -517,13 +517,13 @@
|
||||
"529": "Expected stylesheet with precedence to not be updated to a different kind of <link>. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key.%s",
|
||||
"530": "The render was aborted by the server with a promise.",
|
||||
"531": "react-markup is not supported outside a React Server Components environment.",
|
||||
"532": "Attempted to render a Client Component from renderToMarkup. This is not supported since it will never hydrate. Only render Server Components with renderToMarkup.",
|
||||
"533": "Attempted to render a Server Action from renderToMarkup. This is not supported since it varies by version of the app. Use a fixed URL for any forms instead.",
|
||||
"534": "renderToMarkup should not have emitted Client References. This is a bug in React.",
|
||||
"535": "renderToMarkup should not have emitted Server References. This is a bug in React.",
|
||||
"536": "Cannot pass ref in renderToMarkup because they will never be hydrated.",
|
||||
"537": "Cannot pass event handlers (%s) in renderToMarkup because the HTML will never be hydrated so they can never get called.",
|
||||
"538": "Cannot use state or effect Hooks in renderToMarkup because this component will never be hydrated.",
|
||||
"532": "Attempted to render a Client Component from renderToHTML. This is not supported since it will never hydrate. Only render Server Components with renderToHTML.",
|
||||
"533": "Attempted to render a Server Action from renderToHTML. This is not supported since it varies by version of the app. Use a fixed URL for any forms instead.",
|
||||
"534": "renderToHTML should not have emitted Client References. This is a bug in React.",
|
||||
"535": "renderToHTML should not have emitted Server References. This is a bug in React.",
|
||||
"536": "Cannot pass ref in renderToHTML because they will never be hydrated.",
|
||||
"537": "Cannot pass event handlers (%s) in renderToHTML because the HTML will never be hydrated so they can never get called.",
|
||||
"538": "Cannot use state or effect Hooks in renderToHTML because this component will never be hydrated.",
|
||||
"539": "Binary RSC chunks cannot be encoded as strings. This is a bug in the wiring of the React streams.",
|
||||
"540": "String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.",
|
||||
"541": "Compared context values must be arrays"
|
||||
|
||||
Reference in New Issue
Block a user