File tree Expand file tree Collapse file tree 4 files changed +6
-10
lines changed
functional-tests/fixtures
(proper_react)/(redesign)
components/client/toolbar Expand file tree Collapse file tree 4 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ export const defaultLocalForcedFeatureFlags: FeatureFlagName[] = [
1919 "SidebarNavigationRedesign" ,
2020 "EditScanProfileDetails" ,
2121 "SubPlat3" ,
22- "Announcements" ,
2322] ;
2423
2524const test = baseTest . extend < {
Original file line number Diff line number Diff line change @@ -99,10 +99,9 @@ export const MobileShell = (props: Props) => {
9999 { ! isOnSubscriptionPlans && (
100100 < div className = { styles . headerEnd } >
101101 { /* c8 ignore next 3 */ }
102- { props . enabledFeatureFlags . includes ( "Announcements" ) &&
103- props . announcements && (
104- < AnnouncementDialog announcements = { props . announcements } />
105- ) }
102+ { props . announcements && (
103+ < AnnouncementDialog announcements = { props . announcements } />
104+ ) }
106105 { props . session ? (
107106 < UserMenu
108107 user = { props . session ?. user }
Original file line number Diff line number Diff line change @@ -46,10 +46,9 @@ export const Toolbar = (props: Props) => {
4646 enabledFeatureFlags = { props . enabledFeatureFlags }
4747 />
4848 { /* c8 ignore next 3 */ }
49- { props . enabledFeatureFlags . includes ( "Announcements" ) &&
50- props . announcements && (
51- < AnnouncementDialog announcements = { props . announcements } />
52- ) }
49+ { props . announcements && (
50+ < AnnouncementDialog announcements = { props . announcements } />
51+ ) }
5352 < AppPicker />
5453 { props . user && (
5554 < UserMenu user = { props . user } fxaSettingsUrl = { props . fxaSettingsUrl } />
Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ export const featureFlagNames = [
6969 "SidebarNavigationRedesign" ,
7070 "EditScanProfileDetails" ,
7171 "SubPlat3" ,
72- "Announcements" ,
7372 "DisableOneRepScans" ,
7473 "DisableLandingToDashboardRedirect" ,
7574 "MaskDataBrokerCount" ,
You can’t perform that action at this time.
0 commit comments