style: cleanup some things

This commit is contained in:
David Ralph
2021-05-26 22:28:26 +01:00
parent 1d6013f738
commit 586b6f8700
20 changed files with 26 additions and 44 deletions

View File

@@ -186,7 +186,7 @@ export default class SettingsFunctions {
localStorage.clear();
this.setDefaultSettings();
Object.keys(settings).forEach(key => {
Object.keys(settings).forEach((key) => {
localStorage.setItem(key, settings[key]);
});
}