@@ -66,7 +66,7 @@ if (__DEV__) {
6666 return self;
6767 }
6868
69- var ReactVersion = "18.3.0-www-classic-e82d96aa ";
69+ var ReactVersion = "18.3.0-www-classic-14b2377a ";
7070
7171 var LegacyRoot = 0;
7272 var ConcurrentRoot = 1;
@@ -237,7 +237,6 @@ if (__DEV__) {
237237 var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
238238 var REACT_PROVIDER_TYPE = Symbol.for("react.provider");
239239 var REACT_CONTEXT_TYPE = Symbol.for("react.context");
240- var REACT_SERVER_CONTEXT_TYPE = Symbol.for("react.server_context");
241240 var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
242241 var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
243242 var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
@@ -4059,9 +4058,7 @@ if (__DEV__) {
40594058 _currentValue2: null,
40604059 _threadCount: 0,
40614060 Provider: null,
4062- Consumer: null,
4063- _defaultValue: null,
4064- _globalName: null
4061+ Consumer: null
40654062 };
40664063
40674064 function requiredContext(c) {
@@ -6928,10 +6925,7 @@ if (__DEV__) {
69286925 return createChild(returnFiber, unwrapThenable(thenable), lanes);
69296926 }
69306927
6931- if (
6932- newChild.$$typeof === REACT_CONTEXT_TYPE ||
6933- newChild.$$typeof === REACT_SERVER_CONTEXT_TYPE
6934- ) {
6928+ if (newChild.$$typeof === REACT_CONTEXT_TYPE) {
69356929 var context = newChild;
69366930 return createChild(
69376931 returnFiber,
@@ -7015,10 +7009,7 @@ if (__DEV__) {
70157009 );
70167010 }
70177011
7018- if (
7019- newChild.$$typeof === REACT_CONTEXT_TYPE ||
7020- newChild.$$typeof === REACT_SERVER_CONTEXT_TYPE
7021- ) {
7012+ if (newChild.$$typeof === REACT_CONTEXT_TYPE) {
70227013 var context = newChild;
70237014 return updateSlot(
70247015 returnFiber,
@@ -7119,10 +7110,7 @@ if (__DEV__) {
71197110 );
71207111 }
71217112
7122- if (
7123- newChild.$$typeof === REACT_CONTEXT_TYPE ||
7124- newChild.$$typeof === REACT_SERVER_CONTEXT_TYPE
7125- ) {
7113+ if (newChild.$$typeof === REACT_CONTEXT_TYPE) {
71267114 var context = newChild;
71277115 return updateFromMap(
71287116 existingChildren,
@@ -7829,10 +7817,7 @@ if (__DEV__) {
78297817 );
78307818 }
78317819
7832- if (
7833- newChild.$$typeof === REACT_CONTEXT_TYPE ||
7834- newChild.$$typeof === REACT_SERVER_CONTEXT_TYPE
7835- ) {
7820+ if (newChild.$$typeof === REACT_CONTEXT_TYPE) {
78367821 var context = newChild;
78377822 return reconcileChildFibersImpl(
78387823 returnFiber,
@@ -8996,10 +8981,7 @@ if (__DEV__) {
89968981 // This is a thenable.
89978982 var thenable = usable;
89988983 return useThenable(thenable);
8999- } else if (
9000- usable.$$typeof === REACT_CONTEXT_TYPE ||
9001- usable.$$typeof === REACT_SERVER_CONTEXT_TYPE
9002- ) {
8984+ } else if (usable.$$typeof === REACT_CONTEXT_TYPE) {
90038985 var context = usable;
90048986 return readContext(context);
90058987 }
@@ -18273,9 +18255,7 @@ if (__DEV__) {
1827318255 var currentValue = valueCursor.current;
1827418256
1827518257 {
18276- {
18277- context._currentValue2 = currentValue;
18278- }
18258+ context._currentValue2 = currentValue;
1827918259
1828018260 {
1828118261 var currentRenderer2 = renderer2CursorDEV.current;
@@ -18922,9 +18902,7 @@ if (__DEV__) {
1892218902 // We'll initialize these at the root.
1892318903 _currentValue: null,
1892418904 _currentValue2: null,
18925- _threadCount: 0,
18926- _defaultValue: null,
18927- _globalName: null
18905+ _threadCount: 0
1892818906 };
1892918907
1893018908 {
0 commit comments