From afdf519aaae6ec60f56445e490d786d311f4cd90 Mon Sep 17 00:00:00 2001 From: sim1222 Date: Thu, 22 Dec 2022 17:44:47 +0900 Subject: [PATCH] delete debug msg and memo --- packages/client/src/scripts/reactionImportMenu.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/client/src/scripts/reactionImportMenu.ts b/packages/client/src/scripts/reactionImportMenu.ts index 475463cd7..06d1b27ae 100644 --- a/packages/client/src/scripts/reactionImportMenu.ts +++ b/packages/client/src/scripts/reactionImportMenu.ts @@ -102,8 +102,6 @@ export async function openReactionImportMenu(ev: MouseEvent, reaction: string, n return (emoji.name === name); }); }); - console.log(name); - console.log(duplication); if (await duplication) { os.api('notes/reactions/create', { noteId: noteId, @@ -116,7 +114,7 @@ export async function openReactionImportMenu(ev: MouseEvent, reaction: string, n noteId: noteId, reaction: `:${name}:`, }); - }, 1000); + }, 1000); // インポートしてからバックエンドに浸透するのが遅いので1秒待つ }); } },