canina/frontend/application/app/dashboard/pets/page.tsx
parsa aghaei 98829f5873
Some checks failed
E2E Playwright Tests / Run Full E2E & Security Suites (push) Waiting to run
Deploy Canina / deploy (push) Has been cancelled
feat(routes): add /dashboard/pets and /dashboard/orders routing handlers
2026-08-26 14:28:49 +03:30

6 lines
128 B
TypeScript

import { redirect } from 'next/navigation';
export default function DashboardPetsPage() {
redirect('/dashboard?tab=pets');
}