@@ -23,7 +23,7 @@ import {
2323 discreteUpdates as discreteUpdates_old ,
2424 flushControlled as flushControlled_old ,
2525 flushSync as flushSync_old ,
26- flushSyncWithWarningIfAlreadyRendering as flushSyncWithWarningIfAlreadyRendering_old ,
26+ flushSyncWithoutWarningIfAlreadyRendering as flushSyncWithoutWarningIfAlreadyRendering_old ,
2727 flushPassiveEffects as flushPassiveEffects_old ,
2828 getPublicRootInstance as getPublicRootInstance_old ,
2929 attemptSynchronousHydration as attemptSynchronousHydration_old ,
@@ -61,7 +61,7 @@ import {
6161 discreteUpdates as discreteUpdates_new ,
6262 flushControlled as flushControlled_new ,
6363 flushSync as flushSync_new ,
64- flushSyncWithWarningIfAlreadyRendering as flushSyncWithWarningIfAlreadyRendering_new ,
64+ flushSyncWithoutWarningIfAlreadyRendering as flushSyncWithoutWarningIfAlreadyRendering_new ,
6565 flushPassiveEffects as flushPassiveEffects_new ,
6666 getPublicRootInstance as getPublicRootInstance_new ,
6767 attemptSynchronousHydration as attemptSynchronousHydration_new ,
@@ -112,9 +112,9 @@ export const flushControlled = enableNewReconciler
112112 ? flushControlled_new
113113 : flushControlled_old ;
114114export const flushSync = enableNewReconciler ? flushSync_new : flushSync_old ;
115- export const flushSyncWithWarningIfAlreadyRendering = enableNewReconciler
116- ? flushSyncWithWarningIfAlreadyRendering_new
117- : flushSyncWithWarningIfAlreadyRendering_old ;
115+ export const flushSyncWithoutWarningIfAlreadyRendering = enableNewReconciler
116+ ? flushSyncWithoutWarningIfAlreadyRendering_new
117+ : flushSyncWithoutWarningIfAlreadyRendering_old ;
118118export const flushPassiveEffects = enableNewReconciler
119119 ? flushPassiveEffects_new
120120 : flushPassiveEffects_old ;
0 commit comments