diff --git a/frontend/pages/index.tsx b/frontend/pages/index.tsx
index d3b753b..1a7c47d 100644
--- a/frontend/pages/index.tsx
+++ b/frontend/pages/index.tsx
@@ -113,11 +113,11 @@ const Summary: React.FC = () => {
Scout helps you navigate your document set before your review. Please check the details below are correct before continuing.
- Project Name: {projectDetails.name ? getBaseName(projectDetails.name) : projectDetails.name}
- Review Type: {reviewType}
+ Project Name: {projectDetails.name ? getBaseName(projectDetails.name) : projectDetails.name}
+ Review Type: {reviewType}
- This tool has preprocessed your documents and analysed them against the questions in the {reviewType} workbook.
+ This tool has preprocessed your documents and analysed them against the questions in the {reviewType} workbook. Head to the Results tab to see analysis for each criterion in the gate workbook, click on the links to files to see what evidence has been used to form that conclusion.
@@ -125,19 +125,13 @@ const Summary: React.FC = () => {
-
Review Summary
-
{summaryText}
+
Overview
+
- {Object.keys(categories).map(category => (
-
-
{category}
-
{`Number of negative results: ${categories[category]}`}
-
- ))}
);
};