Skip to content

Commit e7665e0

Browse files
committed
chore: fix types
1 parent 6f2a889 commit e7665e0

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const _default: any
2+
3+
export default _default

app/components/OgImage/Package.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<script setup lang="ts">
2-
import { computed, toRefs } from 'vue'
32
import { joinURL } from 'ufo'
43
54
const props = withDefaults(

app/pages/package/[...package].vue

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -247,15 +247,7 @@ const repositoryUrl = computed(() => {
247247
return url
248248
})
249249
250-
const {
251-
meta: repoMeta,
252-
repoRef,
253-
stars,
254-
starsLink,
255-
forks,
256-
forksLink,
257-
refresh: refreshRepoMeta,
258-
} = useRepoMeta(repositoryUrl)
250+
const { meta: repoMeta, repoRef, stars, starsLink, forks, forksLink } = useRepoMeta(repositoryUrl)
259251
260252
const PROVIDER_ICONS: Record<string, string> = {
261253
github: 'i-carbon:logo-github',

0 commit comments

Comments
 (0)