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
As part of the Snackbar implementation, the Mobile Feature Support team reported that they needed to patch our useSnackbar hook for usage in the app. They specifically ran into issues when a Snackbar was shown, and then hidden due to navigation change. They mentioned that issue is likely because Snackbar was being called as part of a useEffect on one of the app screens and thus had to be included in the useEffect dependency array, and this caused some side effects without the memoization of useSnackbar
Description
As part of the Snackbar implementation, the Mobile Feature Support team reported that they needed to patch our
useSnackbar
hook for usage in the app. They specifically ran into issues when a Snackbar was shown, and then hidden due to navigation change. They mentioned that issue is likely because Snackbar was being called as part of auseEffect
on one of the app screens and thus had to be included in theuseEffect
dependency array, and this caused some side effects without the memoization ofuseSnackbar
Acceptance Criteria
useSnackbar
if they make senseThe text was updated successfully, but these errors were encountered: