Skip to content

Commit

Permalink
Update student_data.js
Browse files Browse the repository at this point in the history
  • Loading branch information
chamhayden authored Oct 9, 2024
1 parent 921946e commit 52e4b9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/student_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 52e4b9e

Please sign in to comment.