Skip to content

Commit cfc8612

Browse files
committed
removing unused pending variable
1 parent 503b4df commit cfc8612

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

app/components/Changelog/Releases.vue

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,13 @@ const { info, requestedDate } = defineProps<{
44
requestedDate?: string
55
}>()
66
7-
const { data: releases, pending } = useFetch<ReleaseData[]>(
7+
const { data: releases } = useFetch<ReleaseData[]>(
88
() => `/api/changelog/releases/${info.provider}/${info.repo}`,
99
)
1010
1111
const route = useRoute()
1212
const router = useRouter()
1313
14-
// if (import.meta.client) {
15-
16-
// watchEffect(() => {
17-
18-
// })
19-
// }
20-
2114
watch(
2215
[() => route.hash, () => requestedDate, releases],
2316
([hash, date, r]) => {

0 commit comments

Comments
 (0)