Skip to content

Commit

Permalink
build(base-modal): workaround for Internal Error: Unable to follow sy…
Browse files Browse the repository at this point in the history
…mbol for Fade
  • Loading branch information
joseacabaneros committed May 29, 2024
1 parent 2603262 commit a9f1519
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/x-components/src/components/modals/base-modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@
</template>

<script lang="ts">
import { defineComponent, nextTick, onBeforeUnmount, onMounted, ref, watch } from 'vue';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import Vue, { defineComponent, nextTick, onBeforeUnmount, onMounted, ref, watch } from 'vue';
import { useDebounce } from '../../composables/use-debounce';
import { AnimationProp } from '../../types';
import { getTargetElement } from '../../utils/html';
import * as Fade from '../animations/fade.vue';
import Fade from '../animations/fade.vue';
import { NoElement } from '../no-element';
import { FOCUSABLE_SELECTORS } from '../../utils/focus';
Expand Down

0 comments on commit a9f1519

Please sign in to comment.