mirror of
https://github.com/langgenius/dify.git
synced 2026-08-02 10:46:38 +08:00
11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
import { redirect } from '@/next/navigation'
|
|
|
|
export default async function InstanceDetailPage({
|
|
params,
|
|
}: {
|
|
params: Promise<{ appInstanceId: string }>
|
|
}) {
|
|
const { appInstanceId } = await params
|
|
redirect(`/deployments/${appInstanceId}/overview`)
|
|
}
|