From cece6a40dc3d74efff291d2d280b30f2cd78c2b0 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Mon, 27 Apr 2026 07:19:09 +0800 Subject: [PATCH] fix: add immediatelyRender:false to Tiptap to prevent SSR hydration mismatch --- components/tiptap-editor.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/tiptap-editor.tsx b/components/tiptap-editor.tsx index 125423c..f17c2d6 100644 --- a/components/tiptap-editor.tsx +++ b/components/tiptap-editor.tsx @@ -27,6 +27,7 @@ export function TiptapEditor({ className = "", }: TiptapEditorProps) { const editor = useEditor({ + immediatelyRender: false, extensions: [ StarterKit.configure({ heading: false,