This commit is contained in:
Keith Grant 2020-02-18 09:25:15 -08:00
parent 3b71d2a37b
commit 1f3ad85403

View File

@ -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([]);