On main: session-work-2026-05-22

This commit is contained in:
ajaysi
2026-05-23 13:09:41 +05:30
40 changed files with 1870 additions and 859 deletions

View File

@@ -107,8 +107,9 @@ const BlogSection: React.FC<BlogSectionProps> = ({
const handleContentChange = (e: any) => {
const newContent = e.target.value;
const cursorPos = e.target.selectionStart;
setContent(newContent);
assistiveWriting.handleTypingChange(newContent);
assistiveWriting.handleTypingChange(newContent, cursorPos);
};
const handleFocus = () => setIsFocused(true);