From 97f184077efac0dbce5dbcb1d6977360b678675c Mon Sep 17 00:00:00 2001 From: lupingblaine Date: Wed, 13 May 2026 23:49:04 -0700 Subject: [PATCH] fix: correct timeout error page status code --- 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 9a9640abeb18..2a6217bc8319 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";