aboutsummaryrefslogtreecommitdiff
path: root/src/background/repositories/PersistentSettingRepository.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/background/repositories/PersistentSettingRepository.ts')
-rw-r--r--src/background/repositories/PersistentSettingRepository.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/background/repositories/PersistentSettingRepository.ts b/src/background/repositories/PersistentSettingRepository.ts
index e3b78b3..c10f2cf 100644
--- a/src/background/repositories/PersistentSettingRepository.ts
+++ b/src/background/repositories/PersistentSettingRepository.ts
@@ -4,7 +4,7 @@ import SettingData from '../../shared/SettingData';
@injectable()
export default class SettingRepository {
async load(): Promise<SettingData | null> {
- let { settings } = await browser.storage.local.get('settings');
+ const { settings } = await browser.storage.local.get('settings');
if (!settings) {
return null;
}