diff --git a/components/Header.vue b/components/Header.vue index ca321cd4..2d1a7a9c 100644 --- a/components/Header.vue +++ b/components/Header.vue @@ -128,14 +128,14 @@ }); } - if (this.config.user.enabled) { - links.push({ - link: '/' + this.config.user.route, - icon: 'user', - text: this.user ? '@' + this.user.username : this.$t('user.header'), - textLong: this.user ? '@' + this.user.username : this.$t('user.headerLong'), - }); - } + // if (this.config.user.enabled) { + // links.push({ + // link: '/' + this.config.user.route, + // icon: 'user', + // text: this.user ? '@' + this.user.username : this.$t('user.header'), + // textLong: this.user ? '@' + this.user.username : this.$t('user.headerLong'), + // }); + // } return links; },