build fixes
This commit is contained in:
parent
656ad5fe7e
commit
7d6f7c682c
8 changed files with 35 additions and 14 deletions
7
app/projects/[id]/page.tsx
Normal file
7
app/projects/[id]/page.tsx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// app/projects/[id]/page.tsx
|
||||
import { redirect } from "next/navigation";
|
||||
|
||||
export default async function Page({ params }: { params: Promise<{ id: string }> }) {
|
||||
const { id } = await params;
|
||||
redirect(`/portal/projects?id=${encodeURIComponent(id)}`);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue