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 9e20fcb commit 2217d65Copy full SHA for 2217d65
1 file changed
app/components/Compare/FacetBarChart.vue
@@ -21,7 +21,6 @@ const props = defineProps<{
21
facetLoading?: boolean
22
}>()
23
24
-// const { accentColors, selectedAccentColor } = useAccentColor()
25
const colorMode = useColorMode()
26
const resolvedMode = shallowRef<'light' | 'dark'>('light')
27
const rootEl = shallowRef<HTMLElement | null>(null)
@@ -88,7 +87,7 @@ const dataset = computed<VueUiHorizontalBarDatasetItem[]>(() => {
88
87
})
89
90
const skeletonDataset = computed(() =>
91
- props.packages.map((pkg, i) => {
+ props.packages.map((_pkg, i) => {
92
return {
93
name: '_',
94
value: i + 1,
0 commit comments