Files
documenso/apps/web/src/app/(dashboard)/settings/page.tsx
2023-06-09 18:22:21 +10:00

9 lines
224 B
TypeScript

import { redirect } from 'next/navigation';
export default function SettingsPage() {
redirect('/settings/profile');
// Page is intentionally empty because it will be redirected to /settings/profile
return <div />;
}