From 2678c4e279ad192c8cbbdd5386ef9d0dd03cb1aa Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Mon, 16 Mar 2026 00:32:30 +0000 Subject: [PATCH] fix --- .../editor/components/link/link-menu.tsx | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/apps/client/src/features/editor/components/link/link-menu.tsx b/apps/client/src/features/editor/components/link/link-menu.tsx index 57598f39..e61a586c 100644 --- a/apps/client/src/features/editor/components/link/link-menu.tsx +++ b/apps/client/src/features/editor/components/link/link-menu.tsx @@ -7,6 +7,7 @@ import { showLinkMenuAtom } from "@/features/editor/atoms/editor-atoms"; import { LinkEditorPanel } from "@/features/editor/components/link/link-editor-panel"; import { normalizeUrl } from "@/features/editor/components/link/link-view"; import { TextSelection } from "@tiptap/pm/state"; +import { Paper } from "@mantine/core"; type EditorLinkMenuProps = { editor: Editor; @@ -105,21 +106,9 @@ export const EditorLinkMenu: FC = ({ editor }) => { }} style={{ zIndex: 198, position: "relative" }} > -
+ -
+ ); };