File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
packages/react-dom-bindings/src/events Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ import {isHigherEventPriority} from 'react-reconciler/src/ReactEventPriorities';
3838import { isRootDehydrated } from 'react-reconciler/src/ReactFiberShellHydration' ;
3939import { dispatchReplayedFormAction } from './plugins/FormActionEventPlugin' ;
4040import {
41- peekCurrentUpdatePriority ,
41+ resolveUpdatePriority ,
4242 runWithPriority as attemptHydrationAtPriority ,
4343} from '../client/ReactDOMUpdatePriority' ;
4444
@@ -333,10 +333,7 @@ function attemptExplicitHydrationTarget(
333333}
334334
335335export function queueExplicitHydrationTarget ( target : Node ) : void {
336- // TODO: This will read the priority if it's dispatched by the React
337- // event system but not native events. Should read window.event.type, like
338- // we do for updates (getCurrentEventPriority).
339- const updatePriority = peekCurrentUpdatePriority ( ) ;
336+ const updatePriority = resolveUpdatePriority ( ) ;
340337 const queuedTarget : QueuedHydrationTarget = {
341338 blockedOn : null ,
342339 target : target ,
You can’t perform that action at this time.
0 commit comments