From 5e2e7c4b886e1c3f4911a9e22cadacd0ef6d0039 Mon Sep 17 00:00:00 2001 From: Ty Mick <5317080+TyMick@users.noreply.github.com> Date: Tue, 24 Sep 2024 15:29:03 -0700 Subject: [PATCH] Fix `NodeIdPlugin` name in Drag & Drop docs --- apps/www/content/docs/dnd.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/www/content/docs/dnd.mdx b/apps/www/content/docs/dnd.mdx index aa4ea45e2..2d3da83e4 100644 --- a/apps/www/content/docs/dnd.mdx +++ b/apps/www/content/docs/dnd.mdx @@ -26,11 +26,11 @@ npm install @udecode/plate-dnd @udecode/plate-node-id react-dnd react-dnd-html5- ```tsx import { DndPlugin } from '@udecode/plate-dnd'; -import { NodeId } from '@udecode/plate-node-id'; +import { NodeIdPlugin } from '@udecode/plate-node-id'; const plugins = [ // ...otherPlugins, - NodeId, + NodeIdPlugin, DndPlugin, ]; ```