From fa6de04e790638444be2f85811f23476b4a3aaf3 Mon Sep 17 00:00:00 2001 From: mabashian Date: Wed, 13 Jan 2021 14:00:17 -0500 Subject: [PATCH] Remove object import as its not used --- awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx b/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx index 4d5805db64..a851fbfdc4 100644 --- a/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx +++ b/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx @@ -3,7 +3,7 @@ import { Formik, useField, useFormikContext } from 'formik'; import { withI18n } from '@lingui/react'; import { t } from '@lingui/macro'; import { useLocation } from 'react-router-dom'; -import { func, shape, object, arrayOf } from 'prop-types'; +import { func, shape, arrayOf } from 'prop-types'; import { Form } from '@patternfly/react-core'; import { InstanceGroup } from '../../../types'; import { VariablesField } from '../../../components/CodeMirrorInput';