What's wrong with this entry?
Anonymous. No account, no email.
- Fixed clipboard copy on Windows/WSL to suggest PowerShell as an alternative when
clip/clip.exeis unavailable (search for"powershell") - Fixed
AskUserQuestiontool input schema being re-parsed on every render by wrapping inuseMemo(search for"inputSchema.safeParse") - Fixed remote hook (
useRemoteMode) return value not being memoized, causing unnecessary re-renders (search for"useMemo"invQq) - Fixed destructive command warning and sandboxing check not being memoized in permission prompts (search for
"destructiveWarning") - Fixed permission animation timer starting before component is visible by using
nullinitial delay whenKis true (search for"lc6") - Fixed
CLAUDE_CODE_EXTRA_BODYenv var to shallow-copy parsed object, preventing mutations to the cached parse result (search for"CLAUDE_CODE_EXTRA_BODY") - Fixed WebFetch HTML-to-Markdown converter (
Turndown) being loaded eagerly; it's now lazy-loaded via dynamic import (search for"turndown") - Fixed Bash command argument parser to use case-insensitive comparison for command names like
python/Python3(search for"python3") - Fixed early return from
onSubmitwhen bridge reconnection is active, preventing accidental message submission (search for"[onSubmit] early return") - Fixed deferred context attachments (tips, changed files) leaking empty arrays when no items are found by adding early-return checks (search for
"if (K.length === 0) return []")