Skip to content

Commit aa264e8

Browse files
committed
chore: lint
1 parent 69e55c1 commit aa264e8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

lib/sessionManager/types.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,12 @@ export abstract class SessionBase<V extends string = StorageKeys>
3333

3434
async setItems(items: Partial<Record<V, unknown>>): Awaitable<void> {
3535
await Promise.all(
36-
(Object.entries(items) as [V | StorageKeys, unknown][]).map(([key, value]) => {
37-
return this.setSessionItem(key, value);
38-
}
39-
));
36+
(Object.entries(items) as [V | StorageKeys, unknown][]).map(
37+
([key, value]) => {
38+
return this.setSessionItem(key, value);
39+
},
40+
),
41+
);
4042
}
4143
}
4244

0 commit comments

Comments
 (0)