You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.
Wrap your changes in a conditional that references the variable from DraftFeatureFlags. Here is an example:
var DraftFeatureFlags = require('DraftFeatureFlags');
// ...
// call it something unique and descriptive, please *not* "my_draft_feature_flag"
if (DraftFeatureFlags.my_draft_feature_flag) {
// do the new behavior
} else {
// do the old behavior
}