diff --git a/portfolio/src/main/webapp/libraries.js b/portfolio/src/main/webapp/libraries.js index c533199..09627ca 100644 --- a/portfolio/src/main/webapp/libraries.js +++ b/portfolio/src/main/webapp/libraries.js @@ -148,7 +148,7 @@ async function getLoginStatus() { const response = await fetch('/authentication'); const responseHtml = await response.text(); document.getElementById('login-status').innerHTML = responseHtml; - if (responseHtml.includes("Logout")) { - document.getElementById('comments-form').style.display = "block"; + if (responseHtml.includes('Logout')) { + document.getElementById('comments-form').style.display = 'block'; } }