9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
'use client';
|
|
|
|
import { redirect } from 'next/navigation';
|
|
|
|
export default function WorkflowEditPage() {
|
|
// Redirect to the correct workflows edit location
|
|
redirect('/admin/doc-control/workflows/[id]/edit');
|
|
}
|