We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7541441 commit 0637f45Copy full SHA for 0637f45
1 file changed
app/components/OgImage/Package.takumi.vue
@@ -16,7 +16,7 @@ const KIND_ICONS: Record<string, string> = {
16
import type { JsDelivrFileNode } from '#shared/types'
17
import { joinURL } from 'ufo'
18
import { useCharts } from '~/composables/useCharts'
19
-import { createSmoothPath as smoothPath } from 'vue-data-ui/utils'
+import { createSmoothPath } from 'vue-data-ui/utils'
20
21
const REPO_PROVIDER_ICONS: Record<string, string> = {
22
github: 'i-simple-icons:github',
@@ -240,7 +240,7 @@ const sparklineSrc = computed(() => {
240
y: padY + (1 - (v - min) / range) * (height - padY * 2),
241
}))
242
243
- const pathData = smoothPath(points)
+ const pathData = createSmoothPath(points)
244
const firstX = points[0]!.x
245
const lastX = points.at(-1)!.x
246
0 commit comments