@@ -900,7 +900,6 @@ export function getChildFormatContext(
900900}
901901
902902function getSuspenseViewTransition (
903- resumableState : ResumableState ,
904903 parentViewTransition : null | ViewTransitionContext ,
905904) : null | ViewTransitionContext {
906905 if ( parentViewTransition === null ) {
@@ -944,7 +943,7 @@ export function getSuspenseFallbackFormatContext(
944943 parentContext . insertionMode ,
945944 parentContext . selectedValue ,
946945 parentContext . tagScope | FALLBACK_SCOPE | EXIT_SCOPE ,
947- getSuspenseViewTransition ( resumableState , parentContext . viewTransition ) ,
946+ getSuspenseViewTransition ( parentContext . viewTransition ) ,
948947 ) ;
949948}
950949
@@ -956,7 +955,7 @@ export function getSuspenseContentFormatContext(
956955 parentContext . insertionMode ,
957956 parentContext . selectedValue ,
958957 parentContext . tagScope | ENTER_SCOPE ,
959- getSuspenseViewTransition ( resumableState , parentContext . viewTransition ) ,
958+ getSuspenseViewTransition ( parentContext . viewTransition ) ,
960959 ) ;
961960}
962961
0 commit comments