Add enableServerComponentKeys to NEXT_MAJOR (#28259)
Sebastian Markbåge committed
Feb 7, 2024 at 12:21 UTC
5c08662301d99d1305e164c701fe8e4da1bc526c
1 file changed
+3
-2
packages/shared/ReactFeatureFlags.js
+3
-2
@@ -15,8 +15,6 @@
15
16
export const enableComponentStackLocations = true;
17
18
-export const enableServerComponentKeys = __EXPERIMENTAL__;
19
-
18
// -----------------------------------------------------------------------------
19
// Killswitch
20
//
@@ -169,6 +167,9 @@ export const enableFilterEmptyStringAttributesDOM = __NEXT_MAJOR__;
167
// Disabled caching behavior of `react/cache` in client runtimes.
168
export const disableClientCache = false;
169
170
+// Changes Server Components Reconciliation when they have keys
171
+export const enableServerComponentKeys = __NEXT_MAJOR__;
172
+
173
// -----------------------------------------------------------------------------
174
// Chopping Block
175
//