diff --git a/apps/frontend/src/app/detail/[id]/page.tsx b/apps/frontend/src/app/detail/[id]/page.tsx index 8ec81f0..86b16e0 100644 --- a/apps/frontend/src/app/detail/[id]/page.tsx +++ b/apps/frontend/src/app/detail/[id]/page.tsx @@ -42,7 +42,7 @@ async function fetchPostDetail(apiBaseUrl: string, id: string) { cache: "no-store", }); - if (response.status === 404) { + if (response.status === 404 || response.status >= 500) { return null; }