fix: NS_ERROR_STORAGE_BUSY warnings in firefox (#7319)
Fixes: https://linear.app/chatwoot/issue/CW-2075/ns-error-storage-busy-no-error-message
This commit is contained in:
@@ -4,8 +4,9 @@ export const LocalStorage = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
get(key) {
|
get(key) {
|
||||||
const value = window.localStorage.getItem(key);
|
let value = null;
|
||||||
try {
|
try {
|
||||||
|
value = window.localStorage.getItem(key);
|
||||||
return typeof value === 'string' ? JSON.parse(value) : value;
|
return typeof value === 'string' ? JSON.parse(value) : value;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return value;
|
return value;
|
||||||
|
|||||||
Reference in New Issue
Block a user