refactor: Remove MarketTest page and update Navbar navigation

- Delete MarketTest.vue as it is no longer needed for testing purposes.
- Remove the corresponding route from the router configuration.
- Update Navbar.vue to eliminate the 'Market Test' navigation item, streamlining the navigation options.
This commit is contained in:
padreug 2025-08-02 18:08:55 +02:00
parent 670270ca91
commit 9e02574c27
3 changed files with 1 additions and 95 deletions

View file

@ -49,15 +49,7 @@ const router = createRouter({
requiresAuth: true
}
},
{
path: '/market-test',
name: 'market-test',
component: () => import('@/pages/MarketTest.vue'),
meta: {
title: 'Market Test',
requiresAuth: true
}
}
]
})