Files
pangolin/src/app/[orgId]/settings/access/users/[userId]/page.tsx
T
2026-09-11 11:58:51 -04:00

14 lines
369 B
TypeScript

import type { Metadata } from "next";
import { redirect } from "next/navigation";
export const metadata: Metadata = {
title: "User"
};
export default async function UserPage(props: {
params: Promise<{ orgId: string; userId: string }>;
}) {
const { orgId, userId } = await props.params;
redirect(`/${orgId}/settings/access/users/${userId}/general`);
}