Skip to content

Commit 0637f45

Browse files
committed
fix: remove alias
1 parent 7541441 commit 0637f45

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/OgImage/Package.takumi.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const KIND_ICONS: Record<string, string> = {
1616
import type { JsDelivrFileNode } from '#shared/types'
1717
import { joinURL } from 'ufo'
1818
import { useCharts } from '~/composables/useCharts'
19-
import { createSmoothPath as smoothPath } from 'vue-data-ui/utils'
19+
import { createSmoothPath } from 'vue-data-ui/utils'
2020
2121
const REPO_PROVIDER_ICONS: Record<string, string> = {
2222
github: 'i-simple-icons:github',
@@ -240,7 +240,7 @@ const sparklineSrc = computed(() => {
240240
y: padY + (1 - (v - min) / range) * (height - padY * 2),
241241
}))
242242
243-
const pathData = smoothPath(points)
243+
const pathData = createSmoothPath(points)
244244
const firstX = points[0]!.x
245245
const lastX = points.at(-1)!.x
246246

0 commit comments

Comments
 (0)