Skip to content

Commit

Permalink
remove
Browse files Browse the repository at this point in the history
  • Loading branch information
Zewed committed May 20, 2024
1 parent 9302970 commit 862c9a8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Typography from "@tiptap/extension-typography";
import { EditorContent, useEditor } from "@tiptap/react";
import { StarterKit } from "@tiptap/starter-kit";
import { useEffect } from "react";
Expand All @@ -12,7 +11,7 @@ const TipTapEditor = (): JSX.Element => {
const { content, updateContent, expand, setExpand } = useNotesEditorContext();

const tipTapEditor = useEditor({
extensions: [StarterKit, Typography],
extensions: [StarterKit],
content,
onUpdate: ({ editor }) => {
updateContent(editor.getHTML());
Expand Down

0 comments on commit 862c9a8

Please sign in to comment.