import type { Editor } from '@tiptap/core' import { getEditorElement } from '@admin/utils/editor/get-editor-element' export function getEditorScrollElement(editor: Editor) { const editorElement = getEditorElement(editor) const scrollElement = editorElement?.closest('.simple-editor-content') return scrollElement instanceof HTMLElement ? scrollElement : editorElement }