mirror of
https://github.com/documenso/documenso.git
synced 2025-11-16 09:41:35 +10:00
9 lines
224 B
TypeScript
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 />;
|
|
}
|