Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ export const withFeatureFlagConsumer = (
flags: {
// Real LD flags from `withLDConsumer()`.
...this.props.flags,
// @todo: REMOVE BEFORE MERGE
// !!! Override the CMR flag so that it's officially "released" !!!!
// @todo: clean up all conditional logic based on this flag.
cmr: true,
// Mock flags from Redux.
...this.props.mockFlags
Expand Down
3 changes: 2 additions & 1 deletion packages/manager/src/hooks/useFlags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export const useFlags = () => {

return {
...flags,
// @todo: REMOVE BEFORE MERGE
// !!! Override the CMR flag so that it's officially "released" !!!!
// @todo: clean up all conditional logic based on this flag.
cmr: true,
...mockFlags
};
Expand Down