You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, each time the watch stream is interrupted, an error is triggered.
We can improve user experience by handling these interruptions more gracefully. The doc.subscribe('connection', callback) already allows us to receive events when the connection is interrupted. We can leverage this to handle the interruptions within the event callback instead of exposing errors to the users.
Why:
Users can handle watch stream interruptions more effectively and will no longer see console errors.
The text was updated successfully, but these errors were encountered:
Description:
Currently, each time the watch stream is interrupted, an error is triggered.
We can improve user experience by handling these interruptions more gracefully. The
doc.subscribe('connection', callback)
already allows us to receive events when the connection is interrupted. We can leverage this to handle the interruptions within the event callback instead of exposing errors to the users.Why:
The text was updated successfully, but these errors were encountered: