diff --git a/clientv2/src/pages/student/StudentProfile.page.tsx b/clientv2/src/pages/student/StudentProfile.page.tsx index e4c9719..26ea37b 100644 --- a/clientv2/src/pages/student/StudentProfile.page.tsx +++ b/clientv2/src/pages/student/StudentProfile.page.tsx @@ -211,8 +211,8 @@ export function StudentHomePage() { if (!isValidGithubProfile(studentData?.github)) { return showErrorSaveNotification('GitHub field is not a valid GitHub Profile URL.'); } - if (studentData.degrees.length == 0) { - return showErrorSaveNotification('You must specify at least one degree.') + if (studentData.degrees.length === 0) { + return showErrorSaveNotification('You must specify at least one degree.'); } try { if (file && file.size !== 0) {