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
refactor: convert unnecessary named handlers to inline functions
Simplifies code by removing named handler functions that only pass
through arguments to other functions without adding meaningful logic or
transformation.
Changes: - terminal-link.tsx: handleMouseOver/handleMouseOut → inline
arrow functions - message-block.tsx: handleToggleAgentListCollapsed →
inline arrow function - chat.tsx: handleActivateRepoPath → inline arrow
function
This improves consistency with existing inline patterns in the codebase
and reduces unnecessary indirection.
0 commit comments