We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
QuickLink should avoid triggering Network requests when the device is offline.
It should be relatively easy to fix this by adding this code in the checkConnection function.
checkConnection
if("onLine" in navigator && !navigator.onLine) { return new Error('Device is offline'); }