Skip to content

Commit 9b8f7d4

Browse files
committed
chore: lint
1 parent 4529e30 commit 9b8f7d4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/dialogs/dialogs.ios.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ function createAlertController(options: DialogOptions & MDCAlertControlerOptions
174174
options.view instanceof View
175175
? options.view
176176
: Builder.createViewFromEntry({
177-
moduleName: options.view as string
178-
});
177+
moduleName: options.view as string
178+
});
179179

180180
view.cssClasses.add(CSSUtils.MODAL_ROOT_VIEW_CSS_CLASS);
181181
const modalRootViewCssClasses = CSSUtils.getSystemCssClasses();
@@ -274,8 +274,8 @@ export function confirm(arg: any): Promise<boolean> {
274274
};
275275
const options = !isDialogOptions(arg)
276276
? Object.assign(defaultOptions, {
277-
message: arg + ''
278-
})
277+
message: arg + ''
278+
})
279279
: Object.assign(defaultOptions, arg);
280280
const alertController = createAlertController(options, resolve);
281281

0 commit comments

Comments
 (0)