chore(nc-gui): lint

This commit is contained in:
Ramesh Mane
2026-04-07 08:22:41 +00:00
parent 1605e0c8b1
commit 956284bc46
5 changed files with 13 additions and 34 deletions

View File

@@ -66,24 +66,6 @@ const integrationListRef = ref<HTMLDivElement>()
const { width: integrationListContainerWidth } = useElementSize(integrationListRef)
const listWrapperMaxWidth = computed(() => {
const w = integrationListContainerWidth.value
if (w < 580) {
return '280px'
}
if (w < 870) {
return '576px'
}
if (w < 1160) {
return '872px'
}
return '1168px'
})
const upvotesData = computed(() => {
return new Set(syncDataUpvotes.value)
})