From 1f3ad8540386934736c2ef2b4dd910bfbcfd1654 Mon Sep 17 00:00:00 2001 From: Keith Grant Date: Tue, 18 Feb 2020 09:25:15 -0800 Subject: [PATCH] de-lint --- .../screens/Organization/OrganizationList/OrganizationList.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.jsx b/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.jsx index a417db86db..380011d545 100644 --- a/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.jsx +++ b/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.jsx @@ -1,5 +1,5 @@ import React, { useState, useEffect, useCallback } from 'react'; -import { useLocation, useHistory, useRouteMatch } from 'react-router-dom'; +import { useLocation, useRouteMatch } from 'react-router-dom'; import { withI18n } from '@lingui/react'; import { t } from '@lingui/macro'; import { Card, PageSection } from '@patternfly/react-core'; @@ -24,7 +24,6 @@ const QS_CONFIG = getQSConfig('organization', { function OrganizationsList({ i18n }) { const location = useLocation(); - const history = useHistory(); const match = useRouteMatch(); const [selected, setSelected] = useState([]);