feat: session will remember the semester you chose

This commit is contained in:
2024-08-03 15:13:40 -05:00
parent 8d403b5fdb
commit df79234ba8
3 changed files with 15 additions and 2 deletions

View File

@@ -111,14 +111,14 @@ async function PapaParse(department, num, name, instructor, sem) {
const data = await response.json();
if (data.length === 0) {
console.error("Error executing query :((( :", error);
console.error("Error executing query :((( :");
return;
}
selectedClass = data;
usingExperimental = true;
} catch (error) {
console.error("Error fetching data:", error);
console.error("Error fetching data:");
}
}