From 9a190f7c36bbd098a237f1318a4a2dd710da8728 Mon Sep 17 00:00:00 2001 From: karl Date: Fri, 28 Mar 2025 15:37:08 -0400 Subject: [PATCH] chore: 404 page --- app/collections/industrial/[...notfound]/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/collections/industrial/[...notfound]/page.tsx b/app/collections/industrial/[...notfound]/page.tsx index 229a921b5..85cdb2a10 100644 --- a/app/collections/industrial/[...notfound]/page.tsx +++ b/app/collections/industrial/[...notfound]/page.tsx @@ -1,5 +1,6 @@ +import NotFound from '@/app/not-found' import { notFound } from 'next/navigation' export default function CatchAllNotFoundPage() { - notFound() + return }