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.
); }