From 6a7138fa155b6368d87320bb2daac4766ab7ade5 Mon Sep 17 00:00:00 2001 From: rudouglas Date: Fri, 4 Jun 2021 00:07:24 +0100 Subject: [PATCH] chore: removed children --- src/components/InstallButton.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/InstallButton.js b/src/components/InstallButton.js index 9d5619cee..68364a496 100644 --- a/src/components/InstallButton.js +++ b/src/components/InstallButton.js @@ -12,7 +12,7 @@ const createInstallLink = () => { return `https://one.newrelic.com/launcher/nr1-core.explorer`; }; -const InstallButton = ({ children, title, ...props }) => { +const InstallButton = ({ title, ...props }) => { return (
{ }; InstallButton.propTypes = { - children: PropTypes.node, title: PropTypes.string, guid: PropTypes.string, };