From 49470281845572722b4df8ca1d251c08f8018c0e Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 13 Feb 2026 13:27:08 -0500 Subject: [PATCH] fix: timeout on error page should have 504 --- src/pages/500.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/500.tsx b/src/pages/500.tsx index af2f0135..1435f070 100644 --- a/src/pages/500.tsx +++ b/src/pages/500.tsx @@ -10,7 +10,7 @@ export default ({ reqId, isTimeout }: { reqId: string; isTimeout?: boolean }) => <>
-

500 Internal Server Error

+

{isTimeout ? '504 Timeout' : '500 Server Error'}

Oops, the package failed to install.