fix: restaurar link CFG→/categorias no nav e corrigir redirect

REC. → /recorrencias, CFG → /categorias (categorias voltam a ser acessíveis).

Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
This commit is contained in:
2026-05-27 15:27:17 -03:00
co-authored by Claude Sonnet 4.6
parent 25156c36e1
commit 62aea56d72
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -50,6 +50,7 @@ const navItems = [
{ to: '/contas', label: 'CONTAS' }, { to: '/contas', label: 'CONTAS' },
{ to: '/personagem', label: 'PERS.' }, { to: '/personagem', label: 'PERS.' },
{ to: '/recorrencias', label: 'REC.' }, { to: '/recorrencias', label: 'REC.' },
{ to: '/categorias', label: 'CFG' },
] ]
</script> </script>
+1 -1
View File
@@ -48,7 +48,7 @@ const router = createRouter({
}, },
{ {
path: '/configuracoes', path: '/configuracoes',
redirect: '/recorrencias', redirect: '/categorias',
}, },
], ],
}) })