diff --git a/js/popup.js b/js/popup.js
index 9b3165bd..d6a7732c 100644
--- a/js/popup.js
+++ b/js/popup.js
@@ -42,7 +42,7 @@ function setCourseList() {
@@ -423,7 +423,7 @@ function getInfo(sem, unique) {
var object = $('
').html(response).contents();
console.log(object.find('.error').text());
if (object.find('.error').text().trim() == 'No class was found for your input.') {
- alert(`Could not find a course with unique number: ${unique}`);
+ window.confirm(`Could not find a course with unique number: ${unique}`);
} else {
var c = getCourseObject(object, link);
console.log(c);
@@ -439,7 +439,7 @@ function getInfo(sem, unique) {
setCourseList();
});
} else {
- alert("There Was An Error. Please check if you are logged into the UT Course Schedule.")
+ window.confirm("There Was An Error. Please check if you are logged into Utexas.")
}
}
}