fix: cn helper function inport error (#6244)

This commit is contained in:
Aaryan Khandelwal 2024-12-20 14:17:22 +05:30 committed by GitHub
parent 119d343d5f
commit 3c8c657ee0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,8 +3,9 @@
import { forwardRef, useCallback, useEffect, useImperativeHandle, useLayoutEffect, useRef, useState } from "react"; import { forwardRef, useCallback, useEffect, useImperativeHandle, useLayoutEffect, useRef, useState } from "react";
import { Editor } from "@tiptap/react"; import { Editor } from "@tiptap/react";
import { v4 as uuidv4 } from "uuid"; import { v4 as uuidv4 } from "uuid";
// plane utils
import { cn } from "@plane/utils";
// helpers // helpers
import { cn } from "@/helpers/common";
import { DROPDOWN_NAVIGATION_KEYS, getNextValidIndex } from "@/helpers/tippy"; import { DROPDOWN_NAVIGATION_KEYS, getNextValidIndex } from "@/helpers/tippy";
// types // types
import { TMentionHandler, TMentionSection, TMentionSuggestion } from "@/types"; import { TMentionHandler, TMentionSection, TMentionSuggestion } from "@/types";