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

Commit f912d9d

Browse files
committed
Appease the linter
1 parent 289ac34 commit f912d9d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/stores/widgets/StopGapWidgetDriver.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,12 @@ export class StopGapWidgetDriver extends WidgetDriver {
121121
return new Set(iterableUnion(allowedSoFar, requested));
122122
}
123123

124-
public async sendEvent(eventType: string, content: any, stateKey: string = null, targetRoomId: string = null): Promise<ISendEventDetails> {
124+
public async sendEvent(
125+
eventType: string,
126+
content: any,
127+
stateKey: string = null,
128+
targetRoomId: string = null,
129+
): Promise<ISendEventDetails> {
125130
const client = MatrixClientPeg.get();
126131
const roomId = targetRoomId || ActiveRoomObserver.activeRoomId;
127132

src/widgets/CapabilityText.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import {
2222
isTimelineCapabilityFor,
2323
MatrixCapabilities, Symbols,
2424
WidgetEventCapability,
25-
WidgetKind
25+
WidgetKind,
2626
} from "matrix-widget-api";
2727
import { _t, _td, TranslatedString } from "../languageHandler";
2828
import { EventType, MsgType } from "matrix-js-sdk/src/@types/event";

0 commit comments

Comments
 (0)