-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Remove unused feature flags and codeblocks #1931
base: main
Are you sure you want to change the base?
Conversation
…ication_analytics, system_metrics, live_users_counter
…ication_analytics, system_metrics, live_users_counter
Changed Files
|
{switch url.path->urlPath { | ||
| list{"home"} => | ||
<RenderIf condition=isLiveUsersCounterEnabled> | ||
<ActivePaymentsCounter /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why have you removed the component rendering <ActivePaymentsCounter />
you can just remove the feature flag and renderif condition
@@ -208,25 +200,6 @@ let make = () => { | |||
/> | |||
</AccessControl> | |||
| list{"users", ..._} => <UserManagementContainer /> | |||
| list{"analytics-user-journey"} => | |||
<AccessControl | |||
isEnabled={featureFlagDetails.userJourneyAnalytics && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here also
<AccessControl | ||
isEnabled={featureFlagDetails.userJourneyAnalytics && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why have we removed the component ?
Type of Change
Description
Removed unused feature flags and codeblocks that used the following feature flags
Motivation and Context
Code cleaning, removed code blocks and feature flags that are not necessary.
How did you test it?
Where to test it?
Checklist
npm run re:build