diff --git a/src/pages/observability-packs.js b/src/pages/observability-packs.js index f873fdb54..afb268f9a 100644 --- a/src/pages/observability-packs.js +++ b/src/pages/observability-packs.js @@ -6,7 +6,7 @@ import { css } from '@emotion/react'; import PackTile from '../components/PackTile'; import PackList from '../components/PackList'; import Select from '../components/Select'; -import { SearchInput, Button, Dropdown } from '@newrelic/gatsby-theme-newrelic'; +import { SearchInput, Button } from '@newrelic/gatsby-theme-newrelic'; import { useQueryParam, StringParam } from 'use-query-params'; const sortOptionValues = ['Alphabetical', 'Reverse', 'Popularity']; @@ -283,4 +283,8 @@ const FormControl = ({ children }) => ( ); +FormControl.propTypes = { + children: PropTypes.node, +}; + export default ObservabilityPacksPage;