From e7e8eadc3107bfd52cf81ebab0e1e8fa4443f69c Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal Date: Fri, 20 Dec 2024 14:12:29 +0530 Subject: [PATCH] fix: cn helper function inport error --- .../src/core/extensions/mentions/mentions-list-dropdown.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/editor/src/core/extensions/mentions/mentions-list-dropdown.tsx b/packages/editor/src/core/extensions/mentions/mentions-list-dropdown.tsx index 81b5fc74408..4f09ed2ae71 100644 --- a/packages/editor/src/core/extensions/mentions/mentions-list-dropdown.tsx +++ b/packages/editor/src/core/extensions/mentions/mentions-list-dropdown.tsx @@ -3,8 +3,9 @@ import { forwardRef, useCallback, useEffect, useImperativeHandle, useLayoutEffect, useRef, useState } from "react"; import { Editor } from "@tiptap/react"; import { v4 as uuidv4 } from "uuid"; +// plane utils +import { cn } from "@plane/utils"; // helpers -import { cn } from "@/helpers/common"; import { DROPDOWN_NAVIGATION_KEYS, getNextValidIndex } from "@/helpers/tippy"; // types import { TMentionHandler, TMentionSection, TMentionSuggestion } from "@/types";