diff --git a/backend/src/student_data.js b/backend/src/student_data.js index c322c97..b10ea2a 100644 --- a/backend/src/student_data.js +++ b/backend/src/student_data.js @@ -14,7 +14,7 @@ const getStudentIds = (term) => { resolve([]); return; } else { - const zids = stdout.trim().slice(1).split('\n'); + const zids = stdout.trim().split('\n'); resolve([...zids, ...config.TERMS[term].TUTOR_ID_LIST, ...config.TERMS[term].AUDIT_ID_LIST]); return; }