@@ -900,7 +900,6 @@ export function getChildFormatContext(
900
900
}
901
901
902
902
function getSuspenseViewTransition (
903
- resumableState : ResumableState ,
904
903
parentViewTransition : null | ViewTransitionContext ,
905
904
) : null | ViewTransitionContext {
906
905
if ( parentViewTransition === null ) {
@@ -944,7 +943,7 @@ export function getSuspenseFallbackFormatContext(
944
943
parentContext . insertionMode ,
945
944
parentContext . selectedValue ,
946
945
parentContext . tagScope | FALLBACK_SCOPE | EXIT_SCOPE ,
947
- getSuspenseViewTransition ( resumableState , parentContext . viewTransition ) ,
946
+ getSuspenseViewTransition ( parentContext . viewTransition ) ,
948
947
) ;
949
948
}
950
949
@@ -956,7 +955,7 @@ export function getSuspenseContentFormatContext(
956
955
parentContext . insertionMode ,
957
956
parentContext . selectedValue ,
958
957
parentContext . tagScope | ENTER_SCOPE ,
959
- getSuspenseViewTransition ( resumableState , parentContext . viewTransition ) ,
958
+ getSuspenseViewTransition ( parentContext . viewTransition ) ,
960
959
) ;
961
960
}
962
961
0 commit comments