diff --git a/frontend/src/components/ExperimentCollection/Header/Header.tsx b/frontend/src/components/ExperimentCollection/Header/Header.tsx
index 4c6a40297..900a9dfee 100644
--- a/frontend/src/components/ExperimentCollection/Header/Header.tsx
+++ b/frontend/src/components/ExperimentCollection/Header/Header.tsx
@@ -45,8 +45,8 @@ export const Header: React.FC
= ({
{scoreDisplayConfig && totalScore !== 0 && (
diff --git a/frontend/src/components/Question/Question.test.tsx b/frontend/src/components/Question/Question.test.tsx
index 60cd9ef81..a5381bac6 100644
--- a/frontend/src/components/Question/Question.test.tsx
+++ b/frontend/src/components/Question/Question.test.tsx
@@ -61,32 +61,6 @@ describe('Question Component', () => {
expect(mockOnChange).toHaveBeenCalledWith('New Value', 'test-question');
});
- it('renders different question views based on the view prop', () => {
- const views = [
- QuestionViews.BUTTON_ARRAY,
- QuestionViews.CHECKBOXES,
- QuestionViews.DROPDOWN,
- QuestionViews.AUTOCOMPLETE,
- QuestionViews.RADIOS,
- QuestionViews.RANGE,
- QuestionViews.TEXT_RANGE,
- QuestionViews.ICON_RANGE,
- QuestionViews.STRING,
- ];
-
- views.forEach((view) => {
- const props = {
- ...defaultProps,
- question: {
- ...defaultProps.question,
- view,
- },
- };
- const { container } = render(