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
Performance/functionality: Moved multiple callback function props from being referenced directly in the useEffect in which they were executed and to their own useEffect in which their values would be written to a ref object. This potentially boosts both performance and unintentional side-effects in scenarios where the props are not properly memoized or where they update frequently. Impacted props: onMenuOpen, onMenuClose, onOptionChange, and onSearchChange.