Skip to content

Commit a32b52c

Browse files
authored
feat: add help & support item to nav bar behind feature flag (#4172)
1 parent fd8fccb commit a32b52c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/pageLayout/constants/navigationHierarchy.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,16 @@ export const generateNavItems = (): NavItem[] => {
202202
link: `/operator`,
203203
activeKeywords: ['operator'],
204204
},
205+
{
206+
id: 'support',
207+
testID: 'nav-item-support',
208+
icon: IconFont.QuestionMark_New,
209+
label: 'Help & Support',
210+
shortLabel: 'Support',
211+
link: '',
212+
activeKeywords: [''],
213+
enabled: () => isFlagEnabled('helpBar'),
214+
},
205215
]
206216

207217
navItems = navItems.filter(item => {

0 commit comments

Comments
 (0)