File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
packages/relay-runtime/util Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,10 @@ export type FeatureFlags = {
80
80
//
81
81
// See https://github.com/facebook/relay/issues/4882
82
82
CHECK_ALL_FRAGMENTS_FOR_MISSING_CLIENT_EDGES : boolean ,
83
+
84
+ // Killswitch in case the fix in https://github.com/facebook/relay/pull/5059
85
+ // causes issues.
86
+ DISABLE_RESOLVER_ROOT_FRAGMENT_NORMALIZATION_BUG_FIX : boolean ,
83
87
} ;
84
88
85
89
const RelayFeatureFlags : FeatureFlags = {
@@ -109,6 +113,7 @@ const RelayFeatureFlags: FeatureFlags = {
109
113
ENABLE_TYPENAME_PREFIXED_DATA_ID : false ,
110
114
ENABLE_UI_CONTEXT_ON_RELAY_LOGGER : false ,
111
115
CHECK_ALL_FRAGMENTS_FOR_MISSING_CLIENT_EDGES : false ,
116
+ DISABLE_RESOLVER_ROOT_FRAGMENT_NORMALIZATION_BUG_FIX : false ,
112
117
} ;
113
118
114
119
module . exports = RelayFeatureFlags ;
You can’t perform that action at this time.
0 commit comments