diff --git a/src/app/(app)/pages/preview/[[...path]]/page.tsx b/src/app/(app)/pages/preview/[[...path]]/page.tsx index 6d9784b..dc4bea0 100644 --- a/src/app/(app)/pages/preview/[[...path]]/page.tsx +++ b/src/app/(app)/pages/preview/[[...path]]/page.tsx @@ -16,7 +16,7 @@ const PreviewCatchAllPage = async ({ params }: { params: { path: string[] } }) = cache: false, }), ]) - if (!user || !page) notFound() + /* if (!user || !page) notFound() */ return } diff --git a/src/app/(app)/posts/preview/[[...path]]/page.tsx b/src/app/(app)/posts/preview/[[...path]]/page.tsx index 11eb5a2..78579bb 100644 --- a/src/app/(app)/posts/preview/[[...path]]/page.tsx +++ b/src/app/(app)/posts/preview/[[...path]]/page.tsx @@ -17,7 +17,7 @@ const PreviewCatchAllPage = async ({ params }: { params: { path: string[] } }) = cache: false, }), ]) - if (!user || !page) notFound() + /* if (!user || !page) notFound() */ return }