diff --git a/awx/ui/src/screens/Template/Survey/SurveyList.js b/awx/ui/src/screens/Template/Survey/SurveyList.js
index 924ea2e8ec..7be6ae6277 100644
--- a/awx/ui/src/screens/Template/Survey/SurveyList.js
+++ b/awx/ui/src/screens/Template/Survey/SurveyList.js
@@ -1,19 +1,11 @@
import React, { useState } from 'react';
import { t } from '@lingui/macro';
-import { useRouteMatch } from 'react-router-dom';
-import {
- Button,
- Title,
- EmptyState,
- EmptyStateIcon,
- EmptyStateBody,
-} from '@patternfly/react-core';
+import { Button } from '@patternfly/react-core';
import { TableComposable, Thead, Tr, Th, Tbody } from '@patternfly/react-table';
-import { CubesIcon } from '@patternfly/react-icons';
-import ContentLoading from 'components/ContentLoading';
import AlertModal from 'components/AlertModal';
-import { ToolbarAddButton } from 'components/PaginatedTable';
+import ContentEmpty from 'components/ContentEmpty';
+import ContentLoading from 'components/ContentLoading';
import useSelected from 'hooks/useSelected';
import SurveyListItem from './SurveyListItem';
@@ -29,8 +21,6 @@ function SurveyList({
deleteSurvey,
canEdit,
}) {
- const match = useRouteMatch();
-
const questions = survey?.spec || [];
const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false);
const [isOrderModalOpen, setIsOrderModalOpen] = useState(false);
@@ -109,10 +99,10 @@ function SurveyList({
- {t`Name`}
- {t`Type`}
- {t`Default`}
- {t`Actions`}
+ {t`Name`}
+ {t`Type`}
+ {t`Default`}
+ {t`Actions`}