summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/script.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/desktop/script.ts')
-rw-r--r--src/client/app/desktop/script.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/desktop/script.ts b/src/client/app/desktop/script.ts
index 4c5b29d1f4..9ff9ced2ea 100644
--- a/src/client/app/desktop/script.ts
+++ b/src/client/app/desktop/script.ts
@@ -152,8 +152,8 @@ init(async (launch, os) => {
{ path: '/notes/:note', name: 'note', component: () => import('./views/home/note.vue').then(m => m.default) },
{ path: '/search', component: () => import('./views/home/search.vue').then(m => m.default) },
{ path: '/tags/:tag', name: 'tag', component: () => import('./views/home/tag.vue').then(m => m.default) },
- { path: '/featured', component: () => import('./views/home/featured.vue').then(m => m.default) },
- { path: '/explore', component: () => import('../common/views/pages/explore.vue').then(m => m.default) },
+ { path: '/featured', name: 'featured', component: () => import('./views/home/featured.vue').then(m => m.default) },
+ { path: '/explore', name: 'explore', component: () => import('../common/views/pages/explore.vue').then(m => m.default) },
{ path: '/i/favorites', component: () => import('./views/home/favorites.vue').then(m => m.default) },
]},
{ path: '/i/messaging/:user', component: MkMessagingRoom },