Skip to content

Commit 28d4b2a

Browse files
committed
fix(lint): fixing lint
1 parent b315cf6 commit 28d4b2a

File tree

1 file changed

+2
-1
lines changed
  • core/src/components/modal/gestures

1 file changed

+2
-1
lines changed

core/src/components/modal/gestures/sheet.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ export const createSheetGesture = (
240240
* which would impact performance significantly.
241241
*/
242242
const targetEl = findClosestIonContent(detail.event.target! as HTMLElement);
243-
cachedScrollEl = targetEl && isIonContent(targetEl) ? getElementRoot(targetEl).querySelector('.inner-scroll') : targetEl;
243+
cachedScrollEl =
244+
targetEl && isIonContent(targetEl) ? getElementRoot(targetEl).querySelector('.inner-scroll') : targetEl;
244245

245246
/**
246247
* If expandToScroll is disabled, we need to swap

0 commit comments

Comments
 (0)