Skip to content

Commit d10509f

Browse files
committed
fix: import paths
The `win` utility was moved to the browser/ folder.
1 parent 49b9169 commit d10509f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/components/modal/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { win } from '@utils/browser';
12
import { StatusBar, Style } from '@utils/native/status-bar';
2-
import { win } from '@utils/window';
33

44
/**
55
* Use y = mx + b to

core/src/components/select/select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { ComponentInterface, EventEmitter } from '@stencil/core';
22
import { Component, Element, Event, Host, Method, Prop, State, Watch, h, forceUpdate } from '@stencil/core';
3+
import { win } from '@utils/browser';
34
import type { LegacyFormController } from '@utils/forms';
45
import { createLegacyFormController } from '@utils/forms';
56
import { findItemLabel, focusElement, getAriaLabel, renderHiddenInput, inheritAttributes, raf } from '@utils/helpers';
@@ -10,7 +11,6 @@ import type { OverlaySelect } from '@utils/overlays-interface';
1011
import { isRTL } from '@utils/rtl';
1112
import { createColorClasses, hostContext } from '@utils/theme';
1213
import { watchForOptions } from '@utils/watch-options';
13-
import { win } from '@utils/window';
1414
import { caretDownSharp, chevronExpand } from 'ionicons/icons';
1515

1616
import { getIonMode } from '../../global/ionic-global';

0 commit comments

Comments
 (0)