diff --git a/addons/info/src/components/PropTable.js b/addons/info/src/components/PropTable.js index 90b1d91ccdb..843969243bf 100644 --- a/addons/info/src/components/PropTable.js +++ b/addons/info/src/components/PropTable.js @@ -4,8 +4,6 @@ import PropTypes from 'prop-types'; import React from 'react'; import PropVal from './PropVal'; -console.info('----', PropTypes); - const PropTypesMap = new Map(); Object.keys(PropTypes).forEach(typeName => { @@ -15,8 +13,6 @@ Object.keys(PropTypes).forEach(typeName => { PropTypesMap.set(type.isRequired, typeName); }); -console.info('PropTypesMap', PropTypesMap); - const stylesheet = { propTable: { marginLeft: -10, @@ -51,7 +47,7 @@ const hasDocgen = type => isNotEmpty(type.__docgenInfo); const boolToString = value => (value ? 'yes' : 'no'); const propsFromDocgen = type => { - const props = null; + const props = {}; const docgenInfoProps = type.__docgenInfo.props; Object.keys(docgenInfoProps).forEach(property => { @@ -126,7 +122,6 @@ export default function PropTable(props) { } const accumProps = hasDocgen(type) ? propsFromDocgen(type) : propsFromPropTypes(type); - console.info('accumProps', accumProps); const array = Object.values(accumProps); if (!array.length) {