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 optimization. In hook useMenuOptions.ts - when initializing function getFilterOptionString2 in the effect - added type check on option.label and if typeof option.label === 'string' just return option.label directly and avoid new string allocation every time. option.label is typed as ReactText, so previously option.label was wrapped in String() to get consistent string return type for function.