Akashdeep Deb

Results 4 comments of Akashdeep Deb

I found some here https://github.com/SortableJS/react-sortablejs/tree/e136cdcc6bd6f4c5e9a2df6980ef5a2db11ed607/examples

I've added a null check to resolve a lot of these ``` if (!editor) return null; ``` And something like: ``` { name: "bold", isActive: (editor) => editor!.isActive("bold"), command: (editor)...

Have you tried creating a NodeView extension based on: https://tiptap.dev/docs/editor/experiments/embeds It would be clutch to get this feature OOTB in novel

Yeah annoying bug, this fixed it for me ```ts newDocs = documents .filter((doc) => doc.pageContent) .map((doc) => ({ ...doc, metadata: { ...doc.metadata, s3Key: key, }, })); ``` Add a filter...