Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/@magic-sdk/provider/src/core/view-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export abstract class ViewController {
): RemoveEventListenerFunction {
const boundHandler = handler.bind(window);

// We cannot effectively cover this function because it never gets reference
// We cannot effectively cover this function because it never gets referenced
// by value. The functionality of this callback is tested within
// `initMessageListener`.
/* istanbul ignore next */
Expand Down
2 changes: 1 addition & 1 deletion packages/@magic-sdk/provider/src/util/web-crypto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async function generateWCKP() {
const { subtle } = window.crypto;
const kp = await subtle.generateKey(
EC_GEN_PARAMS,
false, // need to export the public key, while keep private key non-extractable
false, // need to export the public key, while keeping private key non-extractable
['sign'],
);

Expand Down