diff --git a/apps/web/src/components/AppHud.vue b/apps/web/src/components/AppHud.vue index 6a27b7d..a834f0a 100644 --- a/apps/web/src/components/AppHud.vue +++ b/apps/web/src/components/AppHud.vue @@ -50,6 +50,7 @@ const navItems = [ { to: '/contas', label: 'CONTAS' }, { to: '/personagem', label: 'PERS.' }, { to: '/recorrencias', label: 'REC.' }, + { to: '/categorias', label: 'CFG' }, ] diff --git a/apps/web/src/router/index.ts b/apps/web/src/router/index.ts index c861736..47a4ee1 100644 --- a/apps/web/src/router/index.ts +++ b/apps/web/src/router/index.ts @@ -48,7 +48,7 @@ const router = createRouter({ }, { path: '/configuracoes', - redirect: '/recorrencias', + redirect: '/categorias', }, ], })