Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 903cc77

Browse files
committed
Appease the linter
1 parent e044902 commit 903cc77

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/stores/widgets/StopGapWidgetDriver.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,9 @@ export class StopGapWidgetDriver extends WidgetDriver {
167167
return results.map(e => e.event);
168168
}
169169

170-
public async readStateEvents(eventType: string, stateKey: string | undefined, limit: number): Promise<MatrixEvent[]> {
170+
public async readStateEvents(
171+
eventType: string, stateKey: string | undefined, limit: number,
172+
): Promise<MatrixEvent[]> {
171173
limit = limit > 0 ? Math.min(limit, 100) : 100; // arbitrary choice
172174

173175
const client = MatrixClientPeg.get();

0 commit comments

Comments
 (0)