Skip to content

Commit 03435a3

Browse files
committed
fix(lint): fixing lint
1 parent 435d7e2 commit 03435a3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/utils/overlays.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,8 @@ export const dismiss = async <OverlayDismissOptions>(
684684
return el.tagName !== 'ION-TOAST' && el.focusTrap !== false && el.showBackdrop !== false;
685685
});
686686
const overlayEl = overlay.el as HTMLIonOverlayElement & { focusTrap?: boolean; showBackdrop?: boolean };
687-
const locksRoot = overlayEl.tagName !== 'ION-TOAST' && overlayEl.focusTrap !== false && overlayEl.showBackdrop !== false;
687+
const locksRoot =
688+
overlayEl.tagName !== 'ION-TOAST' && overlayEl.focusTrap !== false && overlayEl.showBackdrop !== false;
688689

689690
/**
690691
* If this is the last visible overlay that is trapping focus

0 commit comments

Comments
 (0)