Skip to content

Commit ea425d8

Browse files
committed
[dev-overlay] Harden types when handling hydration mismatches
1 parent 8601d71 commit ea425d8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

packages/next/src/client/components/errors/attach-hydration-error-state.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66
import {
77
hydrationErrorState,
88
getReactHydrationDiffSegments,
9+
type HydrationErrorState,
910
} from './hydration-error-info'
1011

1112
export function attachHydrationErrorState(error: Error) {
@@ -27,7 +28,7 @@ export function attachHydrationErrorState(error: Error) {
2728
if (reactHydrationDiffSegments) {
2829
const diff = reactHydrationDiffSegments[1]
2930
parsedHydrationErrorState = {
30-
...(error as any).details,
31+
...((error as any).details as HydrationErrorState),
3132
...hydrationErrorState,
3233
// If diff is present in error, we don't need to pick up the console logged warning.
3334
// - if hydration error has diff, and is not hydration diff log, then it's a normal hydration error.

packages/next/src/client/components/errors/hydration-error-info.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import {
44
} from '../is-hydration-error'
55

66
export type HydrationErrorState = {
7-
// Hydration warning template format: <message> <serverContent> <clientContent>
8-
warning?: [string, string, string]
7+
// Hydration warning template format: <message> <serverContent> <clientContent> | <default message>
8+
warning?: [string, string, string] | [string]
99
serverContent?: string
1010
clientContent?: string
1111
// React 19 hydration diff format: <notes> <link> <component diff?>

0 commit comments

Comments
 (0)