From 0586ddc8fe43634e8728b7b2905bfa44073084ad Mon Sep 17 00:00:00 2001 From: Dominik Stumpf Date: Mon, 29 Jul 2024 11:14:58 +0200 Subject: [PATCH] fix: rename imports --- .../lexical/plugins/ToolbarPlugin/components/LinkEditor.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/lexical/plugins/ToolbarPlugin/components/LinkEditor.tsx b/src/components/lexical/plugins/ToolbarPlugin/components/LinkEditor.tsx index b82f432f17..f678709eba 100644 --- a/src/components/lexical/plugins/ToolbarPlugin/components/LinkEditor.tsx +++ b/src/components/lexical/plugins/ToolbarPlugin/components/LinkEditor.tsx @@ -21,8 +21,8 @@ import { $getSelection, $isRangeSelection, SELECTION_CHANGE_COMMAND } from "lexi import { useCallback, useEffect, useRef, useState } from "react" import { FormProvider, useForm } from "react-hook-form" import { ensureUrlProtocol } from "utils/ensureUrlProtocol" -import { LOW_PRIORITY } from "../ToolbarPlugin/constants" -import { getSelectedNode } from "../ToolbarPlugin/utils" +import { LOW_PRIORITY } from "../constants" +import { getSelectedNode } from "../utils" type LinkEditorProps = { isOpen: boolean