From 62aea56d722214954c1ff8f8c5a72c6545b54fd0 Mon Sep 17 00:00:00 2001 From: Mlcarvalho1 Date: Wed, 27 May 2026 15:27:17 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20restaurar=20link=20CFG=E2=86=92/categori?= =?UTF-8?q?as=20no=20nav=20e=20corrigir=20redirect?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit REC. → /recorrencias, CFG → /categorias (categorias voltam a ser acessíveis). Co-Authored-By: Claude Sonnet 4.6 --- apps/web/src/components/AppHud.vue | 1 + apps/web/src/router/index.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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', }, ], })