diff --git a/src/web/app/mobile/views/components/index.ts b/src/web/app/mobile/views/components/index.ts index a2a87807d..73cc1f9f3 100644 --- a/src/web/app/mobile/views/components/index.ts +++ b/src/web/app/mobile/views/components/index.ts @@ -16,6 +16,8 @@ import friendsMaker from './friends-maker.vue'; import notification from './notification.vue'; import notifications from './notifications.vue'; import notificationPreview from './notification-preview.vue'; +import usersList from './users-list.vue'; +import userPreview from './user-preview.vue'; Vue.component('mk-ui', ui); Vue.component('mk-home', home); @@ -33,3 +35,5 @@ Vue.component('mk-friends-maker', friendsMaker); Vue.component('mk-notification', notification); Vue.component('mk-notifications', notifications); Vue.component('mk-notification-preview', notificationPreview); +Vue.component('mk-users-list', usersList); +Vue.component('mk-user-preview', userPreview); diff --git a/src/web/app/mobile/views/components/user-followers.vue b/src/web/app/mobile/views/components/user-followers.vue deleted file mode 100644 index 771291b49..000000000 --- a/src/web/app/mobile/views/components/user-followers.vue +++ /dev/null @@ -1,26 +0,0 @@ - - - diff --git a/src/web/app/mobile/views/components/user-following.vue b/src/web/app/mobile/views/components/user-following.vue deleted file mode 100644 index dfd6135da..000000000 --- a/src/web/app/mobile/views/components/user-following.vue +++ /dev/null @@ -1,26 +0,0 @@ - - - diff --git a/src/web/app/mobile/views/components/user-preview.vue b/src/web/app/mobile/views/components/user-preview.vue index 0246cac6a..3cbc20033 100644 --- a/src/web/app/mobile/views/components/user-preview.vue +++ b/src/web/app/mobile/views/components/user-preview.vue @@ -1,11 +1,11 @@