From 1a5a3fad67fecc10c16ece5b5ea9aae9be9cf37f Mon Sep 17 00:00:00 2001 From: soupette Date: Wed, 12 Feb 2020 10:12:19 +0100 Subject: [PATCH] Add comments Signed-off-by: soupette --- .../strapi-admin/admin/src/containers/ListPluginsPage/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/strapi-admin/admin/src/containers/ListPluginsPage/index.js b/packages/strapi-admin/admin/src/containers/ListPluginsPage/index.js index 1cb00eaaa6..b3f82f5e6e 100644 --- a/packages/strapi-admin/admin/src/containers/ListPluginsPage/index.js +++ b/packages/strapi-admin/admin/src/containers/ListPluginsPage/index.js @@ -34,6 +34,7 @@ import saga from './saga'; export class ListPluginsPage extends React.Component { componentDidMount() { this.props.getPlugins(); + // TODO: set plugins retrieved from the marketplace into the admin reducer } render() { @@ -41,8 +42,6 @@ export class ListPluginsPage extends React.Component { intl: { formatMessage }, } = this.props; - console.log(this.props); - if (this.props.isLoading) { return ; }