260223:1415 20260223 nextJS & nestJS Best pratices
All checks were successful
Build and Deploy / deploy (push) Successful in 4m44s
All checks were successful
Build and Deploy / deploy (push) Successful in 4m44s
This commit is contained in:
@@ -12,9 +12,10 @@ import { format } from "date-fns";
|
||||
export default async function DrawingDetailPage({
|
||||
params,
|
||||
}: {
|
||||
params: { id: string };
|
||||
params: Promise<{ id: string }>;
|
||||
}) {
|
||||
const id = parseInt(params.id);
|
||||
const { id: rawId } = await params;
|
||||
const id = parseInt(rawId);
|
||||
if (isNaN(id)) {
|
||||
notFound();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user