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
4 changes: 2 additions & 2 deletions packages/@magic-sdk/provider/src/modules/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class AuthModule extends BaseModule {

/**
* Initiate an SMS login flow for a user. If successful,
* this method will return a Decenteralized ID token (with a default lifespan
* this method will return a Decentralized ID token (with a default lifespan
* of 15 minutes)
*/
public loginWithSMS(configuration: LoginWithSmsConfiguration) {
Expand All @@ -92,7 +92,7 @@ export class AuthModule extends BaseModule {

/**
* Initiate an Email with OTP login flow for a user. If successful,
* this method will return a Decenteralized ID token (with a default lifespan
* this method will return a Decentralized ID token (with a default lifespan
* of 15 minutes)
*/
public loginWithEmailOTP(configuration: LoginWithEmailOTPConfiguration) {
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 @@ -24,7 +24,7 @@ export function clearKeys() {
}

export async function createJwt() {
// will return undefined is webcrypto is not supported
// will return undefined if webcrypto is not supported
const publicJwk = await getPublicKey();

if (!publicJwk) {
Expand Down