Files
documenso/apps/web/src/app/(dashboard)/settings/page.tsx
2023-11-06 13:01:06 +11: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 />;
}