fix build error

This commit is contained in:
Arjun 2026-03-19 19:20:08 +05:30
parent 2e8a3580c2
commit 1c63ee571c

View file

@ -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 => {