Skip to content

Commit

Permalink
fix: remove onBlur from omit
Browse files Browse the repository at this point in the history
  • Loading branch information
Aslam97 committed Aug 25, 2024
1 parent a2cfd54 commit cd247be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/minimal-tiptap/minimal-tiptap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { LinkBubbleMenu } from './components/bubble-menu/link-bubble-menu'
import { ImageBubbleMenu } from './components/bubble-menu/image-bubble-menu'
import { useMinimalTiptapEditor, UseMinimalTiptapEditorProps } from './hooks/use-minimal-tiptap'

export interface MinimalTiptapProps extends Omit<UseMinimalTiptapEditorProps, 'onUpdate' | 'onBlur'> {
export interface MinimalTiptapProps extends Omit<UseMinimalTiptapEditorProps, 'onUpdate'> {
value?: Content
onChange?: (value: Content) => void
className?: string
Expand Down

0 comments on commit cd247be

Please sign in to comment.