Skip to content

Commit 795841f

Browse files
committed
fix(build): Remove unused entities
1 parent aa72c26 commit 795841f

File tree

2 files changed

+1
-42
lines changed

2 files changed

+1
-42
lines changed

src/background.ts

-40
This file was deleted.

src/comp/ConversationMenu.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { ClassNames } from "@emotion/react";
22
import { Menu, Portal } from "@mantine/core";
33
import { useClickOutside } from "@mantine/hooks";
4-
import { notifications } from "@mantine/notifications";
54
import {
65
IconCaretUp,
76
IconCopy,
@@ -21,7 +20,7 @@ export const ConversationMenu = () => {
2120
setPos({ x, y });
2221
});
2322
const ref = useClickOutside(() => setTarget(null));
24-
const isDeleting = regDel.test(target?.textContent || '')
23+
const isDeleting = regDel.test(target?.textContent || "");
2524

2625
const handlers = useMemo(
2726
() =>

0 commit comments

Comments
 (0)