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.
This commit is contained in:
Oliver Eyton-Williams
2020-07-14 12:26:47 +02:00
committed by GitHub
parent cf190b59e6
commit 22e24dfb54

View File

@ -11,7 +11,7 @@ const propTypes = {
function OfflineWarning({ isOnline, isSignedIn }) {
return !isSignedIn || isOnline ? null : (
<div className='offline-warning'>
We cannot reach the server to update your progress.
You appear to be offline, your progress may not be being saved.
</div>
);
}