From 7ad076539067cb95a8ded0e8c5eb85d819d6d95a Mon Sep 17 00:00:00 2001 From: shawleeo Date: Thu, 14 May 2026 12:20:39 -0700 Subject: [PATCH] fix: replace misleading 504 with 408 on timeout page (#41544) --- app/client/src/ce/constants/messages.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/client/src/ce/constants/messages.ts b/app/client/src/ce/constants/messages.ts index d35ef66b79c..8240f5fc985 100644 --- a/app/client/src/ce/constants/messages.ts +++ b/app/client/src/ce/constants/messages.ts @@ -487,11 +487,11 @@ export const BACK_TO_HOMEPAGE = () => "Go back to homepage"; // error pages export const PAGE_NOT_FOUND_TITLE = () => "404"; export const PAGE_NOT_FOUND = () => "Page not found"; -export const PAGE_SERVER_TIMEOUT_ERROR_CODE = () => "504"; +export const PAGE_SERVER_TIMEOUT_ERROR_CODE = () => "408"; export const PAGE_SERVER_TIMEOUT_TITLE = () => - "Appsmith server is taking too long to respond"; + "Request timed out"; export const PAGE_SERVER_TIMEOUT_DESCRIPTION = () => - `Please retry after some time`; + `The server is taking too long to respond. Please retry after some time`; export const PAGE_CLIENT_ERROR_TITLE = () => "Whoops something went wrong!"; export const PAGE_CLIENT_ERROR_DESCRIPTION = () => "This is embarrassing, please contact Appsmith support for help";