diff --git a/client/components/data/activating-theme/index.js b/client/components/data/activating-theme/index.js index 6265aef1abbffb..8247fd45caf319 100644 --- a/client/components/data/activating-theme/index.js +++ b/client/components/data/activating-theme/index.js @@ -21,9 +21,7 @@ const ActivatingThemeData = React.createClass( { propTypes: { children: React.PropTypes.element.isRequired, - // The following props aren't part of this module's public interface, - // since they are provided by the `connect()` call that is wrapped around - // `ActivatingThemeData` before it is exported. + // Connected props isActivating: React.PropTypes.bool.isRequired, hasActivated: React.PropTypes.bool.isRequired, currentTheme: React.PropTypes.shape( { diff --git a/client/components/data/current-theme/index.js b/client/components/data/current-theme/index.js index c462dc7775a02c..a8e28105d6201a 100644 --- a/client/components/data/current-theme/index.js +++ b/client/components/data/current-theme/index.js @@ -24,9 +24,7 @@ const CurrentThemeData = React.createClass( { React.PropTypes.object, React.PropTypes.bool ] ).isRequired, - // The following props aren't part of this module's public interface, - // since they are provided by the `connect()` call that is wrapped around - // `CurrentThemeData` before it is exported. + // Connected props currentTheme: React.PropTypes.shape( { name: React.PropTypes.string, id: React.PropTypes.string diff --git a/shared/components/data/themes-list-fetcher/index.jsx b/shared/components/data/themes-list-fetcher/index.jsx index b22cdf6483e638..d75cdded03ef43 100644 --- a/shared/components/data/themes-list-fetcher/index.jsx +++ b/shared/components/data/themes-list-fetcher/index.jsx @@ -29,9 +29,7 @@ const ThemesListFetcher = React.createClass( { tier: React.PropTypes.string, onRealScroll: React.PropTypes.func, onLastPage: React.PropTypes.func, - // The following props aren't part of this module's public interface, - // since they are provided by the `connect()` call that is wrapped around - // `ThemesListFetcher` before it is exported. + // Connected props themes: React.PropTypes.array.isRequired, lastPage: React.PropTypes.bool.isRequired, loading: React.PropTypes.bool.isRequired,