cleanup dynamic/static import warnings

This commit is contained in:
Henry Jameson 2026-06-02 18:09:12 +03:00
commit b7ccbc6726
14 changed files with 88 additions and 61 deletions

View file

@ -1,6 +1,8 @@
import { defineAsyncComponent } from 'vue'
import Popover from 'src/components/popover/popover.vue'
import RichContent from 'src/components/rich_content/rich_content.jsx'
import UserAvatar from 'src/components/user_avatar/user_avatar.vue'
import UnicodeDomainIndicator from '../unicode_domain_indicator/unicode_domain_indicator.vue'
import { useInstanceStore } from 'src/stores/instance.js'
@ -19,10 +21,8 @@ const UserListPopover = {
components: {
RichContent,
UnicodeDomainIndicator,
Popover: defineAsyncComponent(() => import('../popover/popover.vue')),
UserAvatar: defineAsyncComponent(
() => import('../user_avatar/user_avatar.vue'),
),
Popover,
UserAvatar,
},
computed: {
usersCapped() {