Skip to content

Commit 42a2f64

Browse files
committed
chore: apply coderabbitai suggestions
1 parent 78afaf0 commit 42a2f64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/composables/usePackageComparison.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function usePackageComparison(packageNames: MaybeRefOrGetter<string[]>) {
8080
const cache = shallowRef(new Map<string, PackageComparisonData>())
8181

8282
// Derived array in current package order
83-
const packagesData = computed(
83+
const packagesData = computed<false | (PackageComparisonData | null)[]>(
8484
() =>
8585
import.meta.client &&
8686
!nuxt.isHydrating &&

app/pages/compare.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ useHead({
286286
</div>
287287

288288
<h2
289-
id="comparison-heading"
289+
id="comparison-heading-footer"
290290
class="text-xs text-fg-subtle uppercase tracking-wider mb-4 mt-10"
291291
>
292292
{{ $t('compare.facets.trends.title') }}

0 commit comments

Comments
 (0)