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
fix(BulkSelect): hoist default label functions to prevent useMemo invalidation
The inline arrow function defaults were creating new function references
on every render, breaking useMemo optimization. This caused dropdown
items to recompute on every render instead of only when dependencies
changed.
Fixed by hoisting default label functions to module-level constants,
ensuring stable references across renders and proper memoization.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
0 commit comments