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 {
35
35
findHostInstance as findHostInstance_old ,
36
36
findHostInstanceWithWarning as findHostInstanceWithWarning_old ,
37
37
findHostInstanceWithNoPortals as findHostInstanceWithNoPortals_old ,
38
+ shouldError as shouldError_old ,
38
39
shouldSuspend as shouldSuspend_old ,
39
40
injectIntoDevTools as injectIntoDevTools_old ,
40
41
act as act_old ,
@@ -158,7 +159,7 @@ export const findHostInstanceWithNoPortals = enableNewReconciler
158
159
: findHostInstanceWithNoPortals_old ;
159
160
export const shouldError = enableNewReconciler
160
161
? shouldError_new
161
- : shouldError_new ;
162
+ : shouldError_old ;
162
163
export const shouldSuspend = enableNewReconciler
163
164
? shouldSuspend_new
164
165
: shouldSuspend_old ;
You can’t perform that action at this time.
0 commit comments