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
When an instance is registered with registerSingletonAsync<T> and later checked if it is ready with isReady<T>(), then errors occurring inside the async factory function are swallowed/lost.
A workaround is to use getAsync<T>() instead where errors are correctly propagated.
The text was updated successfully, but these errors were encountered:
When an instance is registered with
registerSingletonAsync<T>
and later checked if it is ready withisReady<T>()
, then errors occurring inside the async factory function are swallowed/lost.A workaround is to use
getAsync<T>()
instead where errors are correctly propagated.The text was updated successfully, but these errors were encountered: