Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRivers committed Oct 25, 2024
1 parent 69e55c1 commit aa264e8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lib/sessionManager/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@ export abstract class SessionBase<V extends string = StorageKeys>

async setItems(items: Partial<Record<V, unknown>>): Awaitable<void> {
await Promise.all(
(Object.entries(items) as [V | StorageKeys, unknown][]).map(([key, value]) => {
return this.setSessionItem(key, value);
}
));
(Object.entries(items) as [V | StorageKeys, unknown][]).map(
([key, value]) => {
return this.setSessionItem(key, value);
},
),
);
}
}

Expand Down

0 comments on commit aa264e8

Please sign in to comment.