We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 941fba7 commit 4a8f5baCopy full SHA for 4a8f5ba
src/embedded.ts
@@ -162,7 +162,7 @@ export class RoomWidgetClient extends MatrixClient {
162
data: T,
163
): Promise<R> => {
164
try {
165
- return await transportSend<T, R>(action, data);
+ return await transportSend(action, data);
166
} catch (error) {
167
processAndThrow(error);
168
}
@@ -174,7 +174,7 @@ export class RoomWidgetClient extends MatrixClient {
174
175
176
177
- return await transportSendComplete<T, R>(action, data);
+ return await transportSendComplete(action, data);
178
179
180
0 commit comments