From f595072169e0201b10ec16f7a68cce6bde0037e8 Mon Sep 17 00:00:00 2001 From: Steve Brownlee Date: Wed, 21 Feb 2024 15:04:33 -0600 Subject: [PATCH] No need to list the objectives --- src/components/dashboard/AssessmentStatusDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dashboard/AssessmentStatusDialog.js b/src/components/dashboard/AssessmentStatusDialog.js index 79f895d..82ede3e 100644 --- a/src/components/dashboard/AssessmentStatusDialog.js +++ b/src/components/dashboard/AssessmentStatusDialog.js @@ -39,7 +39,7 @@ export const AssessmentStatusDialog = ({ toggleStatuses, statusIsOpen }) => { operation = setStudentCurrentAssessment(activeStudent) } else { if (status.status === "Reviewed and Complete") { - const certification = window.confirm(`You certify that the student has been evaluated and has understanding and competency in the following objectives\n\n${assessment.objectives.map(o => o.label).join("\n")} `) + const certification = window.confirm(`You certify that the student has been evaluated and has understanding and competency in the objectives for this book.`) if (certification) { operation = updateStudentCurrentAssessment(activeStudent, status.id) }