6
6
import {
7
7
hydrationErrorState ,
8
8
getReactHydrationDiffSegments ,
9
+ type HydrationErrorState ,
9
10
} from './hydration-error-info'
10
11
11
12
export function attachHydrationErrorState ( error : Error ) {
@@ -27,15 +28,19 @@ export function attachHydrationErrorState(error: Error) {
27
28
if ( reactHydrationDiffSegments ) {
28
29
const diff = reactHydrationDiffSegments [ 1 ]
29
30
parsedHydrationErrorState = {
30
- ...( error as any ) . details ,
31
+ ...( ( error as any ) . details as HydrationErrorState ) ,
31
32
...hydrationErrorState ,
32
33
// If diff is present in error, we don't need to pick up the console logged warning.
33
34
// - if hydration error has diff, and is not hydration diff log, then it's a normal hydration error.
34
35
// - if hydration error no diff, then leverage the one from the hydration diff log.
35
36
36
37
warning : ( diff && ! isHydrationWarning
37
38
? null
38
- : hydrationErrorState . warning ) || [ getDefaultHydrationErrorMessage ( ) ] ,
39
+ : hydrationErrorState . warning ) || [
40
+ getDefaultHydrationErrorMessage ( ) ,
41
+ '' ,
42
+ '' ,
43
+ ] ,
39
44
// When it's hydration diff log, do not show notes section.
40
45
// This condition is only for the 1st squashed error.
41
46
notes : isHydrationWarning ? '' : reactHydrationDiffSegments [ 0 ] ,
0 commit comments