We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08b4e88 commit e087b4eCopy full SHA for e087b4e
packages/runtime-core/src/hydration.ts
@@ -102,8 +102,8 @@ export function createHydrationFunctions(
102
__DEV__ &&
103
warn(
104
`Hydration text mismatch:` +
105
- `\n- Client: ${JSON.stringify(vnode.children)}`,
106
- `\n- Server: ${JSON.stringify((node as Text).data)}`
+ `\n- Client: ${JSON.stringify((node as Text).data)}` +
+ `\n- Server: ${JSON.stringify(vnode.children)}`
107
)
108
;(node as Text).data = vnode.children as string
109
}
0 commit comments