Skip to content

Commit

Permalink
Fix relevant strict ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
MadLittleMods committed Dec 1, 2022
1 parent ad8bb5d commit 9a98e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/unit/matrix-client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function convertQueryDictToStringRecord(queryDict?: QueryDict): Record<string, s
return Object.entries(queryDict).reduce((resultant, [key, value]) => {
resultant[key] = String(value);
return resultant;
}, {});
}, {} as Record<string, string>);
}

describe("MatrixClient", function() {
Expand Down

0 comments on commit 9a98e80

Please sign in to comment.