Skip to content

Commit 497db0a

Browse files
committed
Fix import order in Modals.svelte
1 parent b5fb569 commit 497db0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/Modals.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<script lang="ts" module>
2+
import { ModalStack } from './modal-stack.svelte'
23
export const modals = new ModalStack()
34
45
export interface ModalsProps {
@@ -21,7 +22,6 @@
2122
import type { Snippet } from 'svelte'
2223
import StackedModalContext from './StackedModalContext.svelte'
2324
import type { ModalProps } from './stacked-modal.svelte'
24-
import { ModalStack } from './modal-stack.svelte'
2525
import type { LazyModalComponent, ModalComponent } from './types'
2626
2727
function isLazyModal(

0 commit comments

Comments
 (0)