[eric] windows: drop invalid autoCorrect + autoCapitalize attrs from contentEditable div in EditorSurface — diag logs pinpointed ChatInput as the last child rendered before every 0xC0000005 segfault, and these attributes are spec-defined for input/textarea only so React forwarded them onto a div where Chromium 144 + Windows IME / spellchecker engages a native code path that segfaults during commit; spellCheck stays for spelling underlines; retag v1.1.44

This commit is contained in:
Eric
2026-05-25 19:47:55 -07:00
parent 294d1a91ed
commit 83a042d662
@@ -30,8 +30,6 @@ export const EditorSurface: React.FC<Props> = ({
contentEditable={!disabled}
suppressContentEditableWarning
spellCheck
autoCorrect="on"
autoCapitalize="sentences"
onInput={onInput}
onClick={onClick}
onKeyDown={onKeyDown}