From 1c63ee571c79f1d9bd75b7e22387a5061de67780 Mon Sep 17 00:00:00 2001 From: Arjun <6592213+arkml@users.noreply.github.com> Date: Thu, 19 Mar 2026 19:20:08 +0530 Subject: [PATCH] fix build error --- apps/x/apps/renderer/src/components/markdown-editor.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 => {