@@ -225,9 +225,6 @@ class InstalledAppsView extends React.Component {
225225 }
226226
227227 static createMasterList ( displayServices , apps , customApps , enableLaunch , launchHandler ) {
228- // MF 120219 Testing begin
229- console . log ( `Apps = ${ JSON . stringify ( apps ) } ` ) ;
230- // Testing end
231228 const completeSvcNames = apps
232229 . map ( svc => {
233230 if ( svc . type === SERVICE_TYPES . PROVISIONED_SERVICE ) {
@@ -261,9 +258,6 @@ class InstalledAppsView extends React.Component {
261258 }
262259 return provisionedSvc ;
263260 } ) ;
264- // MF 120219 Testing begin
265- console . log ( `completeSvcList is: ${ JSON . stringify ( completeSvcList ) } ` ) ;
266- // Testing end
267261 const masterList = completeSvcList
268262 . sort ( ( cur , next ) => {
269263 const curDetails = getProductDetails ( cur ) ;
@@ -279,9 +273,6 @@ class InstalledAppsView extends React.Component {
279273 return 0 ;
280274 } )
281275 . map ( ( app , index ) => {
282- // MF 120219 Testing begin
283- console . log ( `App is: ${ JSON . stringify ( app ) } ` ) ;
284- // Testing end
285276 const { description, gaStatus, hidden, prettyName, primaryTask } = getProductDetails ( app ) ;
286277 const uniqKey = InstalledAppsView . genUniqueKeyForService ( app ) ;
287278 return hidden ? null : (
@@ -379,11 +370,6 @@ class InstalledAppsView extends React.Component {
379370 const managedTooltip = 'Managed services are delivered as a hosted service and supported by Red Hat.' ;
380371 // const selfManagedTooltip = 'Self-managed services are available for use, but not managed by Red Hat.';
381372
382- // MF 120219 Testing begin
383- console . log ( appList ) ;
384- console . log ( this . props . apps ) ;
385- // Testing end
386-
387373 return (
388374 < div >
389375 < div className = "integr8ly-tutorial-dashboard-title pf-l-flex pf-u-py-sm" >
0 commit comments