Skip to content

Commit 69e5128

Browse files
committed
fix(lint): ran lint fix
1 parent 846b7cd commit 69e5128

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/src/utils/overlays.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,9 @@ export const dismiss = async <OverlayDismissOptions>(
664664
* from the root element when the last focus-trapping overlay
665665
* is dismissed.
666666
*/
667-
const overlaysTrappingFocus = presentedOverlays.filter((o) => o.tagName !== 'ION-TOAST' && (o as any).focusTrap !== false);
667+
const overlaysTrappingFocus = presentedOverlays.filter(
668+
(o) => o.tagName !== 'ION-TOAST' && (o as any).focusTrap !== false
669+
);
668670
const overlayEl = overlay.el as HTMLIonOverlayElement & { focusTrap?: boolean };
669671
const trapsFocus = overlayEl.tagName !== 'ION-TOAST' && overlayEl.focusTrap !== false;
670672

0 commit comments

Comments
 (0)