mirror of
https://github.com/fosrl/pangolin.git
synced 2026-09-14 06:51:28 +02:00
16 lines
410 B
TypeScript
16 lines
410 B
TypeScript
import type { Metadata } from "next";
|
|
import { redirect } from "next/navigation";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Machine Client"
|
|
};
|
|
|
|
export default async function ClientPage(props: {
|
|
params: Promise<{ orgId: string; niceId: number | string }>;
|
|
}) {
|
|
const params = await props.params;
|
|
redirect(
|
|
`/${params.orgId}/settings/clients/machine/${params.niceId}/general`
|
|
);
|
|
}
|