From 7c72ae021c7a89f86552dd8e66ec4f28f9c2ed74 Mon Sep 17 00:00:00 2001 From: Derek Chen Date: Mon, 4 Mar 2024 15:24:28 -0600 Subject: [PATCH] Oops we got scammed --- docs/main.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/main.js b/docs/main.js index b97df3a..e5d74d4 100644 --- a/docs/main.js +++ b/docs/main.js @@ -64,6 +64,10 @@ async function PapaParse(department, num, name, sem) { 'sp2020': 'https://derec4.github.io/ut-grade-data/2020%20Spring.json', }; + if(sem == 'f2023') { + alert("Fall 2023 isn't fully released yet"); + } + //Update to an array of URL options instead of a lengthy switch statement for readability const url = semesterURLs[sem] || 'https://derec4.github.io/ut-grade-data/2022%20Fall.json'; const response = await fetch(url);