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:
committed by
GitHub
parent
cf190b59e6
commit
22e24dfb54
@ -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>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user