From ba20fc9344d67dd6ca3430ec58424793af919ec6 Mon Sep 17 00:00:00 2001 From: Ryder <66027798+rydersitcawich@users.noreply.github.com> Date: Fri, 3 Nov 2023 19:00:40 -0400 Subject: [PATCH] no longer testing --- frontend/alert/components/managealert/ManageAlertUI.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/alert/components/managealert/ManageAlertUI.tsx b/frontend/alert/components/managealert/ManageAlertUI.tsx index 53d9119bc..71288a7cc 100644 --- a/frontend/alert/components/managealert/ManageAlertUI.tsx +++ b/frontend/alert/components/managealert/ManageAlertUI.tsx @@ -201,7 +201,7 @@ export const ManageAlert = ({ * Returns alerts grouped by course * @return grouped alerts */ - const groupedAlerts = testAlerts + const groupedAlerts = alerts .sort((a, b) => a.section.localeCompare(b.section)) .reduce((res, obj) => { const [courseName, midNum, endNum] = obj.section.split("-");