From 218e95b0487e5c2c84f82ea2aa1a2a3147e38c2f Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Fri, 28 Apr 2023 13:57:06 +0100 Subject: [PATCH] Fix id name --- js/lib.main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/lib.main.js b/js/lib.main.js index d510fae..16a84b5 100644 --- a/js/lib.main.js +++ b/js/lib.main.js @@ -168,7 +168,7 @@ async function getApi(path,auth = false) { async function showHideAuthNotice() { let uuid = localStorage.getItem("uuid") if (uuid) { - document.getElementById('auth-notice').style = 'display:none' + document.getElementById('auth-required').style = 'display:none' } }