rename route

This commit is contained in:
2025-11-24 15:38:54 -03:00
parent 1b5d331c36
commit 4db2123bc5
4 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ export default [
layout('routes/layout.tsx', [ layout('routes/layout.tsx', [
index('routes/index.tsx'), index('routes/index.tsx'),
route('certs', 'routes/certs.tsx'), route('certs', 'routes/certs.tsx'),
route('payments', 'routes/payments/route.tsx'), route('orders', 'routes/orders/route.tsx'),
route('settings', 'routes/settings.tsx'), route('settings', 'routes/settings.tsx'),
route('konviva', 'routes/konviva.ts'), route('konviva', 'routes/konviva.ts'),
route('player/:id', 'routes/player.tsx'), route('player/:id', 'routes/player.tsx'),

View File

@@ -41,7 +41,7 @@ const navMain = [
}, },
{ {
title: 'Histórico de compras', title: 'Histórico de compras',
url: '/payments' url: '/orders'
} }
] ]