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
With the batch refactoring of the applications' Screens to functional components, some instances of useEffect() were left with calls to asynchronous functions that have side effects.
Adapting those during the refactorings would increase the scope and complexity of the PRs and thus was left for a later moment.
Two main solutions are available for those effect adaptations:
Improve the promise handling within the effects without changing the promises themselves ( reference )
With the batch refactoring of the applications' Screens to functional components, some instances of
useEffect()
were left with calls to asynchronous functions that have side effects.Adapting those during the refactorings would increase the scope and complexity of the PRs and thus was left for a later moment.
Two main solutions are available for those effect adaptations:
The text was updated successfully, but these errors were encountered: