Skip to content

Commit b718abf

Browse files
committed
fix: Run lint:fix
Signed-off-by: Marcel Klehr <[email protected]>
1 parent e4ba7b6 commit b718abf

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/lib/browser/BrowserAccountStorage.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default class BrowserAccountStorage {
2020
}
2121

2222
static async changeEntry(entryName, fn, defaultVal) {
23-
await storageLock.acquire(entryName, async () => {
23+
await storageLock.acquire(entryName, async() => {
2424
let entry = await BrowserAccountStorage.getEntry(entryName, defaultVal)
2525
entry = fn(entry)
2626

@@ -172,15 +172,15 @@ export default class BrowserAccountStorage {
172172
data && Object.keys(data).length
173173
? data
174174
: {
175-
bookmarks: {
176-
ServerToLocal: {},
177-
LocalToServer: {},
178-
},
179-
folders: {
180-
ServerToLocal: {},
181-
LocalToServer: {},
182-
},
183-
}
175+
bookmarks: {
176+
ServerToLocal: {},
177+
LocalToServer: {},
178+
},
179+
folders: {
180+
ServerToLocal: {},
181+
LocalToServer: {},
182+
},
183+
}
184184
)
185185
}
186186

0 commit comments

Comments
 (0)