issue-fix
online
@ -1,6 +1,6 @@
function menuFunction() {
var hidden = document.getElementById("menu-hidden");
if hidden.style.display === "block") {
if (hidden.style.display === "block") {
hidden.style.display = "none";
} else {
hidden.style.display = "block";
The note is not visible to the blocked user.