Skip to content

Commit f3acf08

Browse files
committed
fix: lint
1 parent 076093b commit f3acf08

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/auth-compat/src/platform.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,12 @@ function _isHttpOrHttps(): boolean {
5151
*/
5252
export function _isAndroidOrIosCordovaScheme(ua: string = getUA()): boolean {
5353
return !!(
54-
(_getCurrentScheme() === 'file:' || _getCurrentScheme() === 'ionic:'
55-
|| _getCurrentScheme() === 'capacitor:') &&
54+
(_getCurrentScheme() === 'file:' ||
55+
_getCurrentScheme() === 'ionic:' ||
56+
_getCurrentScheme() === 'capacitor:') &&
5657
ua.toLowerCase().match(/iphone|ipad|ipod|android/)
5758
);
59+
5860
}
5961

6062
/**

0 commit comments

Comments
 (0)