feat(routes): simplificar rotas de paciente e imagens e ajustar redirecionamentos

This commit is contained in:
VPS 4 Deploy Agent
2026-06-01 02:48:17 +02:00
parent 2fd4ab91d4
commit c00c0a3646
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ export default function App() {
</ProtectedRoute>
} />
<Route path="/patient/:patientName" element={
<Route path="/:patientName" element={
<ProtectedRoute>
<DashboardPage />
</ProtectedRoute>
@@ -83,7 +83,7 @@ export default function App() {
</ProtectedRoute>
} />
<Route path="/patients/:patientName/image/:imageId" element={
<Route path="/:patientName/:imageId" element={
<ProtectedRoute>
<ImageDetailsPage />
</ProtectedRoute>