We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa72c26 commit 795841fCopy full SHA for 795841f
src/background.ts
src/comp/ConversationMenu.tsx
@@ -1,7 +1,6 @@
1
import { ClassNames } from "@emotion/react";
2
import { Menu, Portal } from "@mantine/core";
3
import { useClickOutside } from "@mantine/hooks";
4
-import { notifications } from "@mantine/notifications";
5
import {
6
IconCaretUp,
7
IconCopy,
@@ -21,7 +20,7 @@ export const ConversationMenu = () => {
21
20
setPos({ x, y });
22
});
23
const ref = useClickOutside(() => setTarget(null));
24
- const isDeleting = regDel.test(target?.textContent || '')
+ const isDeleting = regDel.test(target?.textContent || "");
25
26
const handlers = useMemo(
27
() =>
0 commit comments