From c6cc71861821a3878808bf73b109d557e1b9e265 Mon Sep 17 00:00:00 2001 From: Shuhard Date: Wed, 2 Jul 2025 13:39:18 +0300 Subject: [PATCH] chore: missing changes --- src/app/[locale]/(wppages)/[...notFound]/not-found.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/app/[locale]/(wppages)/[...notFound]/not-found.tsx diff --git a/src/app/[locale]/(wppages)/[...notFound]/not-found.tsx b/src/app/[locale]/(wppages)/[...notFound]/not-found.tsx new file mode 100644 index 0000000..4115631 --- /dev/null +++ b/src/app/[locale]/(wppages)/[...notFound]/not-found.tsx @@ -0,0 +1,5 @@ +import { notFound } from 'next/navigation'; + +export default function CatchAllNotFound() { + notFound(); +}