Skip to content

Commit a2d6336

Browse files
committed
Formatting
1 parent 4ffbce6 commit a2d6336

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

packages-exp/auth-exp/src/core/auth/auth_event_manager.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
*/
1717

1818
import {
19-
AuthEvent, AuthEventConsumer, AuthEventType, EventManager
19+
AuthEvent,
20+
AuthEventConsumer,
21+
AuthEventType,
22+
EventManager
2023
} from '../../model/popup_redirect';
2124
import { AUTH_ERROR_FACTORY, AuthErrorCode } from '../errors';
2225

packages-exp/auth-exp/src/core/strategies/popup.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@
1818
import * as externs from '@firebase/auth-types-exp';
1919

2020
import { Auth } from '../../model/auth';
21-
import { AuthEventType, PopupRedirectResolver } from '../../model/popup_redirect';
21+
import {
22+
AuthEventType,
23+
PopupRedirectResolver
24+
} from '../../model/popup_redirect';
2225
import { User } from '../../model/user';
2326
import { AUTH_ERROR_FACTORY, AuthErrorCode } from '../errors';
2427
import { debugAssert } from '../util/assert';
@@ -112,7 +115,10 @@ class PopupOperation extends AbstractPopupRedirectOperation {
112115
}
113116

114117
async onExecution(): Promise<void> {
115-
debugAssert(this.filter.length === 1, 'Popup operations only handle one event');
118+
debugAssert(
119+
this.filter.length === 1,
120+
'Popup operations only handle one event'
121+
);
116122
const eventId = _generateEventId();
117123
this.authWindow = await this.resolver._openPopup(
118124
this.auth,

packages-exp/auth-exp/src/platform_browser/popup_redirect.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ import { _getCurrentUrl } from '../core/util/location';
2828
import { _open, AuthPopup } from '../core/util/popup';
2929
import { ApiKey, AppName, Auth } from '../model/auth';
3030
import {
31-
AuthEventType, EventManager, GapiAuthEvent, GapiOutcome, PopupRedirectResolver
31+
AuthEventType,
32+
EventManager,
33+
GapiAuthEvent,
34+
GapiOutcome,
35+
PopupRedirectResolver
3236
} from '../model/popup_redirect';
3337
import { _setWindowLocation } from './auth_window';
3438
import { _openIframe } from './iframe/iframe';

0 commit comments

Comments
 (0)