From f411095a36abade5572f83e5b5b020f045223855 Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Fri, 24 Nov 2023 07:36:52 +1100 Subject: [PATCH] fix bug in noticesStr --- src/SEQTA.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SEQTA.js b/src/SEQTA.js index 561b783a..52487e06 100644 --- a/src/SEQTA.js +++ b/src/SEQTA.js @@ -2343,7 +2343,7 @@ function SendHomePage() { document.getElementById('home-container').append(upcomingcontainer); // Creates the notices container into the home container - const NoticesStr = `

Notices

` + const NoticesStr = `

Notices

` var Notices = stringToHTML(NoticesStr); // Appends the shortcut container into the home container document.getElementById('home-container').append(Notices.firstChild);