mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-05 13:22:38 +02:00
fix build error
This commit is contained in:
parent
2e8a3580c2
commit
1c63ee571c
1 changed files with 2 additions and 1 deletions
|
|
@ -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 => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue