File tree Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 1
1
import { History as HistoryIcon } from '@mui/icons-material' ;
2
2
import { Tooltip } from '@mui/material' ;
3
3
import { IconButton , IconButtonProps } from '~/components/IconButton' ;
4
- import { Feature } from '../../../components/Feature' ;
5
4
6
5
export const WorkflowEventsIcon = ( props : IconButtonProps ) => (
7
- < Feature flag = "project-workflow-history" match = { true } >
8
- < Tooltip title = "View Status History Log" >
9
- < IconButton { ...props } >
10
- < HistoryIcon />
11
- </ IconButton >
12
- </ Tooltip >
13
- </ Feature >
6
+ < Tooltip title = "View Status History Log" >
7
+ < IconButton { ...props } >
8
+ < HistoryIcon />
9
+ </ IconButton >
10
+ </ Tooltip >
14
11
) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import {
10
10
import { ThemeProvider } from '@mui/material/styles' ;
11
11
import { ComponentType } from 'react' ;
12
12
import { makeStyles } from 'tss-react/mui' ;
13
- import { Feature } from '../../../components/Feature' ;
14
13
import { PeopleJoinedIcon } from '../../../components/Icons' ;
15
14
import { ListItemLink , ListItemLinkProps } from '../../../components/Routing' ;
16
15
import { CreateButtonMenu } from '../Creates' ;
@@ -41,9 +40,7 @@ export const Sidebar = () => {
41
40
aria-label = "sidebar"
42
41
subheader = { < ListSubheader component = "div" > MENU</ ListSubheader > }
43
42
>
44
- < Feature flag = "dashboard" match = { true } >
45
- < NavItem to = "/dashboard" label = "My Dashboard" icon = { Dashboard } />
46
- </ Feature >
43
+ < NavItem to = "/dashboard" label = "My Dashboard" icon = { Dashboard } />
47
44
< NavItem
48
45
to = "/projects"
49
46
label = "Projects"
You can’t perform that action at this time.
0 commit comments