Skip to content

Commit 81ca49f

Browse files
committed
fix(imports): fix circular dependency warnings
1 parent 11964cd commit 81ca49f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

components/mdc/CustomCard/CustomCard.svelte

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script>
2-
import { Button, Card } from '../'
2+
import Button from '../Button'
3+
import Card from '../Card'
34
45
export let src = ''
56
export let alt = 'image is missing'

components/mdc/Page/Page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script>
2-
import { Progress } from '../'
2+
import Progress from '../Progress'
33
import appBarTitle from '../TopAppBar/title'
44
55
export let loading = false

components/mdc/Tour/Tour.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script>
2-
import { Dialog } from '../'
2+
import Dialog from '../Dialog'
33
import { onMount, tick } from 'svelte'
44
55
export let steps = []

0 commit comments

Comments
 (0)