Lint all files

This commit is contained in:
jeffvli
2023-07-01 19:10:05 -07:00
parent 22af76b4d6
commit 30e52ebb54
334 changed files with 76519 additions and 75932 deletions
@@ -1,10 +1,10 @@
export const setLocalStorageSettings = (type: 'player', object: any) => {
const settings = JSON.parse(localStorage.getItem('settings') || '{}');
const settings = JSON.parse(localStorage.getItem('settings') || '{}');
const newSettings = {
...settings,
[type]: { ...object },
};
const newSettings = {
...settings,
[type]: { ...object },
};
localStorage.setItem('settings', JSON.stringify(newSettings));
localStorage.setItem('settings', JSON.stringify(newSettings));
};