Skip to content

Commit 78d36f0

Browse files
committed
Formatting
1 parent 3aac295 commit 78d36f0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages-exp/auth-exp/src/core/util/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ export function _isIOS(ua: string): boolean {
3939

4040
export function _isIOSStandalone(ua: string): boolean {
4141
return _isIOS(ua) && !!(window.navigator as NavigatorStandalone)?.standalone;
42-
}
42+
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const FIREFOX_EMPTY_URL = 'http://localhost';
3737
export class AuthPopup {
3838
associatedEvent: string | null = null;
3939

40-
constructor(readonly window: Window|null) {}
40+
constructor(readonly window: Window | null) {}
4141

4242
close(): void {
4343
if (this.window) {
@@ -134,4 +134,4 @@ function openAsNewWindowIOS(url: string, target: string): void {
134134
null
135135
);
136136
el.dispatchEvent(click);
137-
}
137+
}

0 commit comments

Comments
 (0)