diff --git a/components/dashboard/links/Index.vue b/components/dashboard/links/Index.vue index a9f5b5a..35b6611 100644 --- a/components/dashboard/links/Index.vue +++ b/components/dashboard/links/Index.vue @@ -14,7 +14,7 @@ async function getLinks() { cursor, }, }) - links.value = links.value.concat(data.links) + links.value = links.value.concat(data.links).filter(Boolean) // Sometimes cloudflare will return null, filter out cursor = data.cursor listComplete = data.list_complete }