diff --git a/src/extensions/rich-text/rich-text-image.ts b/src/extensions/rich-text/rich-text-image.ts index ed6cece0..2dc0cae0 100644 --- a/src/extensions/rich-text/rich-text-image.ts +++ b/src/extensions/rich-text/rich-text-image.ts @@ -63,7 +63,7 @@ type RichTextImageOptions = { acceptedImageMimeTypes: string[] /** - * Renders the image node inline (e.g.,

). By default images are on + * Renders the image node inline (e.g.,

). By default images are on * the same level as paragraphs. */ inline: boolean @@ -82,11 +82,6 @@ type RichTextImageOptions = { * The event handler that is fired when an image file is pasted. */ onImageFilePaste?: (file: File) => void - - /** - * The event handler that should be fired when an image node is deleted. - */ - onImageNodeDelete?: (attachmentId: string) => void } /**