diff --git a/apps/x/apps/renderer/src/components/markdown-editor.tsx b/apps/x/apps/renderer/src/components/markdown-editor.tsx index 590b6585..ac065e3d 100644 --- a/apps/x/apps/renderer/src/components/markdown-editor.tsx +++ b/apps/x/apps/renderer/src/components/markdown-editor.tsx @@ -952,7 +952,8 @@ export function MarkdownEditor({ setRowboatAnchorTop(null) // Get editor content for the agent - const editorContent = editor.storage.markdown?.getMarkdown?.() ?? '' + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const editorContent = (editor.storage as any).markdown?.getMarkdown?.() ?? '' // Helper to find the processing block const findProcessingBlock = (): number | null => {