Skip to content

Commit 2daa09e

Browse files
committed
Formatting
1 parent d7258fa commit 2daa09e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

packages-exp/auth-exp/src/core/providers/email.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,13 @@ export class EmailAuthProvider implements AuthProvider {
3939
/**
4040
* Always set to {@link SignInMethod}.EMAIL_PASSWORD.
4141
*/
42-
static readonly EMAIL_PASSWORD_SIGN_IN_METHOD: 'password' = SignInMethod.EMAIL_PASSWORD;
42+
static readonly EMAIL_PASSWORD_SIGN_IN_METHOD: 'password' =
43+
SignInMethod.EMAIL_PASSWORD;
4344
/**
4445
* Always set to {@link SignInMethod}.EMAIL_LINK.
4546
*/
46-
static readonly EMAIL_LINK_SIGN_IN_METHOD: 'emailLink' = SignInMethod.EMAIL_LINK;
47+
static readonly EMAIL_LINK_SIGN_IN_METHOD: 'emailLink' =
48+
SignInMethod.EMAIL_LINK;
4749
/**
4850
* Always set to {@link ProviderId}.PASSWORD, even for email link.
4951
*/

packages-exp/auth-exp/src/core/providers/facebook.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ import { BaseOAuthProvider } from './oauth';
6868
*/
6969
export class FacebookAuthProvider extends BaseOAuthProvider {
7070
/** Always set to {@link SignInMethod}.FACEBOOK. */
71-
static readonly FACEBOOK_SIGN_IN_METHOD: 'facebook.com' = SignInMethod.FACEBOOK;
71+
static readonly FACEBOOK_SIGN_IN_METHOD: 'facebook.com' =
72+
SignInMethod.FACEBOOK;
7273
/** Always set to {@link ProviderId}.FACEBOOK. */
7374
static readonly PROVIDER_ID: 'facebook.com' = ProviderId.FACEBOOK;
7475

0 commit comments

Comments
 (0)