File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
packages/react-reconciler/src Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ import {
3535 findHostInstance as findHostInstance_old ,
3636 findHostInstanceWithWarning as findHostInstanceWithWarning_old ,
3737 findHostInstanceWithNoPortals as findHostInstanceWithNoPortals_old ,
38+ shouldError as shouldError_old ,
3839 shouldSuspend as shouldSuspend_old ,
3940 injectIntoDevTools as injectIntoDevTools_old ,
4041 act as act_old ,
@@ -158,7 +159,7 @@ export const findHostInstanceWithNoPortals = enableNewReconciler
158159 : findHostInstanceWithNoPortals_old ;
159160export const shouldError = enableNewReconciler
160161 ? shouldError_new
161- : shouldError_new ;
162+ : shouldError_old ;
162163export const shouldSuspend = enableNewReconciler
163164 ? shouldSuspend_new
164165 : shouldSuspend_old ;
You can’t perform that action at this time.
0 commit comments