Fix id name

This commit is contained in:
Fred Boniface 2023-04-28 13:57:06 +01:00
parent 8194ac0f5b
commit 218e95b048
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ async function getApi(path,auth = false) {
async function showHideAuthNotice() { async function showHideAuthNotice() {
let uuid = localStorage.getItem("uuid") let uuid = localStorage.getItem("uuid")
if (uuid) { if (uuid) {
document.getElementById('auth-notice').style = 'display:none' document.getElementById('auth-required').style = 'display:none'
} }
} }