Skip to content

Commit 674c8fe

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

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

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

+7-2
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,15 +28,19 @@ 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.
3435
// - if hydration error no diff, then leverage the one from the hydration diff log.
3536

3637
warning: (diff && !isHydrationWarning
3738
? null
38-
: hydrationErrorState.warning) || [getDefaultHydrationErrorMessage()],
39+
: hydrationErrorState.warning) || [
40+
getDefaultHydrationErrorMessage(),
41+
'',
42+
'',
43+
],
3944
// When it's hydration diff log, do not show notes section.
4045
// This condition is only for the 1st squashed error.
4146
notes: isHydrationWarning ? '' : reactHydrationDiffSegments[0],

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

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

66
export type HydrationErrorState = {
7-
// Hydration warning template format: <message> <serverContent> <clientContent>
7+
// Hydration warning template format: <message> <serverContent> <clientContent> | <default message>
88
warning?: [string, string, string]
99
serverContent?: string
1010
clientContent?: string

0 commit comments

Comments
 (0)