chore: make notification display by default

This commit is contained in:
Leangseu Kim
2023-11-08 17:30:33 -05:00
committed by leangseu-edx
parent 9698c4d4de
commit 18103bcf54
3 changed files with 11 additions and 14 deletions

View File

@@ -21,7 +21,7 @@ function getSessionStorage(key) {
function setSessionStorage(key, value) {
try {
if (global.sessionStorage) {
global.sessionStorage.setItem(key, JSON.stringify(value));
global.sessionStorage.setItem(key, value);
}
} catch (e) {
// If this fails, just bail.