From 657e5b738cb8d2cf88c1c265b06bd047a6189d8a Mon Sep 17 00:00:00 2001 From: Luke De Feo Date: Mon, 12 Aug 2024 03:57:50 -0700 Subject: [PATCH] Summary: Make certifate date notif less wordy. Mulitple people have posted screen shots of this error in flipper support, the fix is right there but its probably lost in the prose, this message is more succient and to the point this is how it looked before, it already has the error type in the title so just need the fix in the body {F1797539480} Reviewed By: antonk52 Differential Revision: D61012130 fbshipit-source-id: dd6f70d8b7d4d4634dd168f320fc78a459ffbd8a --- .../src/app-connectivity/ServerWebSocketBase.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/desktop/flipper-server/src/app-connectivity/ServerWebSocketBase.tsx b/desktop/flipper-server/src/app-connectivity/ServerWebSocketBase.tsx index f0d531f0266..deef424140b 100644 --- a/desktop/flipper-server/src/app-connectivity/ServerWebSocketBase.tsx +++ b/desktop/flipper-server/src/app-connectivity/ServerWebSocketBase.tsx @@ -172,9 +172,7 @@ abstract class ServerWebSocketBase { console.info(`[conn] CSR created at`, requestDate.toISOString()); if (!isSameDay(requestDate)) { throw new Error( - `The certificate request being processed was generated on a different date than the current system date. - This discrepancy can lead to certificate verification errors. - To resolve this issue, please ensure that the device's date and time settings match the system's current date and time.`, + `Please ensure that the device's date and time settings are correct`, ); } }