refactor: rename main entry point

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-07-14 17:40:11 -04:00
parent bf9e7c9538
commit a97556b9ae
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ const routes = [
{
name: 'user_profile',
path: '/me',
component: () => import('@/views/ProfilePage.vue'),
component: () => import('@/pages/Main.vue'),
meta: {
requiresAuth: true
}
@@ -10,7 +10,7 @@ const routes = [
{
name: 'user_profile-tab',
path: '/me/:tab',
component: () => import('@/views/ProfilePage.vue'),
component: () => import('@/pages/Main.vue'),
meta: {
requiresAuth: true
}