Skip to content

Commit

Permalink
fix fbfc723
Browse files Browse the repository at this point in the history
  • Loading branch information
caipira113 committed Oct 25, 2023
1 parent a0cc905 commit 1259b7c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/frontend/src/pages/user/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ SPDX-License-Identifier: AGPL-3.0-only
<div>
<div v-if="user">
<XHome v-if="tab === 'home'" :user="user"/>
<XTimeline v-else-if="tab === 'notes'" :user="user"/>
<XActivity v-else-if="tab === 'activity'" :user="user"/>
<XAchievements v-else-if="tab === 'achievements'" :user="user"/>
<XClips v-else-if="tab === 'clips'" :user="user"/>
Expand Down Expand Up @@ -48,7 +47,6 @@ window.addEventListener('resize', () => {
});

const XHome = defineAsyncComponent(() => import('./home.vue'));
const XTimeline = defineAsyncComponent(() => import('./index.timeline.vue'));
const XActivity = defineAsyncComponent(() => import('./activity.vue'));
const XAchievements = defineAsyncComponent(() => import('./achievements.vue'));
const XClips = defineAsyncComponent(() => import('./clips.vue'));
Expand Down Expand Up @@ -92,10 +90,6 @@ const headerTabs = $computed(() => user ? [{
key: 'home',
title: i18n.ts.overview,
icon: 'ti ti-home',
}, {
key: 'notes',
title: i18n.ts.notes,
icon: 'ti ti-pencil',
}, {
key: 'activity',
title: i18n.ts.activity,
Expand Down

0 comments on commit 1259b7c

Please sign in to comment.