Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync hydrate discrete events in capture phase and dont replay discrete events #22448

Merged
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
prettier
  • Loading branch information
salazarm committed Sep 27, 2021
commit 3e10694133d83c84bbfe8ed66ed5f59759d54b16
10 changes: 5 additions & 5 deletions packages/react-reconciler/src/ReactFiberReconciler.old.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import type {
} from './ReactFiberHostConfig';
import type {RendererInspectionConfig} from './ReactFiberHostConfig';
import type {ReactNodeList} from 'shared/ReactTypes';
import type { Lane } from './ReactFiberLane.old';
import type { SuspenseState } from './ReactFiberSuspenseComponent.old';
import type {Lane} from './ReactFiberLane.old';
import type {SuspenseState} from './ReactFiberSuspenseComponent.old';

import {
findCurrentHostFiber,
Expand All @@ -44,8 +44,8 @@ import {
emptyContextObject,
isContextProvider as isLegacyContextProvider,
} from './ReactFiberContext.old';
import { createFiberRoot } from './ReactFiberRoot.old';
import { injectInternals, onScheduleRoot } from './ReactFiberDevToolsHook.old';
import {createFiberRoot} from './ReactFiberRoot.old';
import {injectInternals, onScheduleRoot} from './ReactFiberDevToolsHook.old';
import {
requestEventTime,
requestUpdateLane,
Expand Down Expand Up @@ -90,7 +90,7 @@ import {
} from './ReactFiberHotReloading.old';
import {markRenderScheduled} from './SchedulingProfiler';
import ReactVersion from 'shared/ReactVersion';
export { registerMutableSourceForHydration } from './ReactMutableSource.old';
export {registerMutableSourceForHydration} from './ReactMutableSource.old';
export {createPortal} from './ReactPortal';
export {
createComponentSelector,
Expand Down