diff --git a/src/App.vue b/src/App.vue index e5f9b31..e7fc50f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -119,16 +119,16 @@ export default { computed: { links () { const links = [ - { - id: 'prefs', - name: 'titles.preferences', - to: '/preferences' - }, { id: 'trending', name: 'titles.trending', to: '/trending' }, + { + id: 'prefs', + name: 'titles.preferences', + to: '/preferences' + }, { id: 'watch-history', name: 'titles.history', @@ -137,7 +137,7 @@ export default { ] if (this.$store.getters['auth/isCurrentlyAuthenticated']) { - links.splice(2, 0, { + links.splice(0, 0, { id: 'feed', name: 'titles.feed', to: '/feed'