From 22e24dfb5409cfb721fc0e1b80feeffd9156c86d Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Tue, 14 Jul 2020 12:26:47 +0200 Subject: [PATCH] fix(client): improve accuracy of offline warning (#39249) The old message made it sound like there was a problem with the server, even though no attempt was being made to contact it. --- client/src/components/OfflineWarning/OfflineWarning.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/OfflineWarning/OfflineWarning.js b/client/src/components/OfflineWarning/OfflineWarning.js index 69fa384096..c8d61e4e84 100644 --- a/client/src/components/OfflineWarning/OfflineWarning.js +++ b/client/src/components/OfflineWarning/OfflineWarning.js @@ -11,7 +11,7 @@ const propTypes = { function OfflineWarning({ isOnline, isSignedIn }) { return !isSignedIn || isOnline ? null : (
- We cannot reach the server to update your progress. + You appear to be offline, your progress may not be being saved.
); }