@@ -169,7 +169,7 @@ export default function ApplicationHome() {
169
169
routePath : NEWS_URL ,
170
170
routeComp : NewsView ,
171
171
icon : ( { selected, ...otherProps } ) => selected ? < NewsIcon { ...otherProps } width = { "24px" } /> : < NewsIcon { ...otherProps } width = { "24px" } /> ,
172
- visible : ( { user } ) => user . orgDev ,
172
+ visible : ( { user } ) => false ,
173
173
style : { color : "red" } ,
174
174
mobileVisible : false ,
175
175
} ,
@@ -179,15 +179,16 @@ export default function ApplicationHome() {
179
179
routePathExact : false ,
180
180
routeComp : OrgView ,
181
181
icon : ( { selected, ...otherProps } ) => selected ? < WorkspacesIcon { ...otherProps } width = { "24px" } /> : < WorkspacesIcon { ...otherProps } width = { "24px" } /> ,
182
- visible : ( { user } ) => ! user . orgDev ,
183
- mobileVisible : true ,
182
+ visible : ( { user } ) => false ,
183
+ mobileVisible : false ,
184
184
} ,
185
185
{
186
186
text : < TabLabel > { trans ( "home.marketplace" ) } </ TabLabel > ,
187
187
routePath : MARKETPLACE_URL ,
188
188
routePathExact : false ,
189
189
routeComp : MarketplaceView ,
190
190
icon : ( { selected, ...otherProps } ) => selected ? < MarketplaceIcon { ...otherProps } width = { "24px" } /> : < MarketplaceIcon { ...otherProps } width = { "24px" } /> ,
191
+ visible : ( { user } ) => false ,
191
192
mobileVisible : false ,
192
193
} ,
193
194
]
0 commit comments