From 3da8759cd34836bda7b945be1110b77f5c6da5a4 Mon Sep 17 00:00:00 2001 From: byeoon <47872200+byeoon@users.noreply.github.com> Date: Fri, 31 Jan 2025 12:38:10 -0500 Subject: [PATCH] fix quotes --- src/plugins/copyStickerLinks/index.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/plugins/copyStickerLinks/index.tsx b/src/plugins/copyStickerLinks/index.tsx index a174e8bf1..b99300a34 100644 --- a/src/plugins/copyStickerLinks/index.tsx +++ b/src/plugins/copyStickerLinks/index.tsx @@ -116,7 +116,7 @@ const messageContextMenuPatch: NavContextMenuPatchCallback = (children, props) = })(); if (menuItem) - findGroupChildrenByChildId(`devmode-copy-id`, children, true)?.push(menuItem); + findGroupChildrenByChildId("devmode-copy-id", children, true)?.push(menuItem); }; const expressionPickerPatch: NavContextMenuPatchCallback = (children, props: { target: HTMLElement; }) => { @@ -137,6 +137,3 @@ export default definePlugin({ "expression-picker": expressionPickerPatch } }); - - -