We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c137c9 commit 5479d1eCopy full SHA for 5479d1e
packages/runtime-core/src/hydration.ts
@@ -134,7 +134,9 @@ export function createHydrationFunctions(
134
__DEV__ &&
135
warn(
136
`Hydration text mismatch:` +
137
- `\n- Server rendered: ${JSON.stringify((node as Text).data)}` +
+ `\n- Server rendered: ${JSON.stringify(
138
+ (node as Text).data
139
+ )}` +
140
`\n- Client rendered: ${JSON.stringify(vnode.children)}`
141
)
142
;(node as Text).data = vnode.children as string
0 commit comments