diff --git a/components/tag/TagsInput.js b/components/tag/TagsInput.js index 7b46fd407c8..be11cf06d90 100644 --- a/components/tag/TagsInput.js +++ b/components/tag/TagsInput.js @@ -1,5 +1,6 @@ import XMarkIcon from "@heroicons/react/20/solid/XMarkIcon"; import Input from "../form/Input"; +import { ReactSortable } from "react-sortablejs"; import Notification from "@components/Notification"; export default function TagsInput({ @@ -7,6 +8,7 @@ export default function TagsInput({ onTagAdd, onTagRemove, inputRef, + setTags, showNotification, setShowNotification, }) { @@ -49,7 +51,7 @@ export default function TagsInput({ const tagItems = tags.map((tag, i) => (
  • {tag}