if (notification === "HIDE_CALENDAR" || "HIDE_ALL")
this will be always true: notification === "HIDE_CALENDAR" can be true or false, but "HIDE_ALL" will be always true
that’s why it always hide the module
it must be like that
if (notification === "HIDE_CALENDAR" || notification === "HIDE_ALL") {
this.hide();
} else if (notification === "SHOW_CALENDAR" || notification === "SHOW_ALL") {
this.show();
}
},





