diff --git a/components/common/CommonPaginator.vue b/components/common/CommonPaginator.vue index e370dbfa..2c190873 100644 --- a/components/common/CommonPaginator.vue +++ b/components/common/CommonPaginator.vue @@ -3,7 +3,6 @@ import { DynamicScroller } from 'vue-virtual-scroller' import 'vue-virtual-scroller/dist/vue-virtual-scroller.css' import type { mastodon } from 'masto' -import type { UnwrapRef } from 'vue' const { paginator, @@ -33,7 +32,7 @@ defineSlots<{ newer: U // newer is undefined when index === 0 }) => void items: (props: { - items: UnwrapRef + items: U[] }) => void updater: (props: { number: number @@ -74,7 +73,7 @@ defineExpose({ createEntry, removeEntry, updateEntry })