Skip to content

Commit 2326be9

Browse files
committed
Fix linter issues
1 parent 13b571c commit 2326be9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/InAppBrowser.ios.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ const getPresentationStyle = function (styleKey: string): UIModalPresentationSty
4545
overCurrentContext: UIModalPresentationStyle.OverCurrentContext,
4646
popover: UIModalPresentationStyle.Popover
4747
};
48-
const defaultModalPresentationStyle = ios.MajorVersion >= 13 ?
49-
UIModalPresentationStyle.Automatic : UIModalPresentationStyle.FullScreen;
48+
const defaultModalPresentationStyle = ios.MajorVersion >= 13 ?
49+
UIModalPresentationStyle.Automatic : UIModalPresentationStyle.FullScreen;
5050
return styles[styleKey] !== undefined ? styles[styleKey] : defaultModalPresentationStyle;
5151
};
5252

@@ -184,7 +184,7 @@ const InAppBrowser = (<any>NSObject).extend({
184184
self.flowDidFinish();
185185
}
186186
);
187-
if(ios.MajorVersion >= 13) {
187+
if (ios.MajorVersion >= 13) {
188188
self.authSession.presentationContextProvider = self;
189189
}
190190
self.authSession.start();

0 commit comments

Comments
 (0)