diff --git a/frontend/src/component/feature/FeatureToggleList/FeatureToggleList.jsx b/frontend/src/component/feature/FeatureToggleList/FeatureToggleList.jsx
index 92857f3916..9a41d138fb 100644
--- a/frontend/src/component/feature/FeatureToggleList/FeatureToggleList.jsx
+++ b/frontend/src/component/feature/FeatureToggleList/FeatureToggleList.jsx
@@ -96,12 +96,12 @@ const FeatureToggleList = ({
};
const searchResultsHeader = filter.query
- ? `(${features.length} matches)`
+ ? ` (${features.length} matches)`
: '';
const headerTitle = archive
- ? `Archived Features ${searchResultsHeader}`
- : `Features ${searchResultsHeader}`;
+ ? `Archived feature toggles${searchResultsHeader}`
+ : `Feature toggles${searchResultsHeader}`;
return (
diff --git a/frontend/src/component/feature/FeatureToggleList/FeatureToggleList.test.jsx b/frontend/src/component/feature/FeatureToggleList/FeatureToggleList.test.jsx
index cacb9ec768..d4d6ca90a5 100644
--- a/frontend/src/component/feature/FeatureToggleList/FeatureToggleList.test.jsx
+++ b/frontend/src/component/feature/FeatureToggleList/FeatureToggleList.test.jsx
@@ -6,6 +6,7 @@ import renderer from 'react-test-renderer';
import theme from 'themes/mainTheme';
import { CREATE_FEATURE } from 'component/providers/AccessProvider/permissions';
import AccessProvider from 'component/providers/AccessProvider/AccessProvider';
+import { AnnouncerProvider } from 'component/common/Announcer/AnnouncerProvider/AnnouncerProvider';
jest.mock('./FeatureToggleListItem/FeatureToggleListItem', () => ({
__esModule: true,
@@ -24,18 +25,22 @@ test('renders correctly with one feature', () => {
const tree = renderer.create(
-
-
-
+
+
+
+
+
);
@@ -52,17 +57,21 @@ test('renders correctly with one feature without permissions', () => {
const tree = renderer.create(
-
-
-
+
+
+
+
+
);
diff --git a/frontend/src/component/feature/FeatureToggleList/__snapshots__/FeatureToggleList.test.jsx.snap b/frontend/src/component/feature/FeatureToggleList/__snapshots__/FeatureToggleList.test.jsx.snap
index 1fb5a3cae3..1bc574e1d5 100644
--- a/frontend/src/component/feature/FeatureToggleList/__snapshots__/FeatureToggleList.test.jsx.snap
+++ b/frontend/src/component/feature/FeatureToggleList/__snapshots__/FeatureToggleList.test.jsx.snap
@@ -1,348 +1,368 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`renders correctly with one feature 1`] = `
-
-
-
+Array [
+
-
+
+
+
+ Feature toggles
+
+
+
-
- Sorted by:
-
-
+
+
-
-
-
+ flags={Object {}}
+ hasAccess={[Function]}
+ />
+
+
-
-
+
,
+]
`;
exports[`renders correctly with one feature without permissions 1`] = `
-