From 15ecf5380a168aea694c2bf2dcbca238b6a3238e Mon Sep 17 00:00:00 2001 From: camila314 <47485054+camila314@users.noreply.github.com> Date: Mon, 24 Jun 2024 01:43:59 -0500 Subject: [PATCH] remove logs --- src/plugins/contentWarning/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/contentWarning/index.tsx b/src/plugins/contentWarning/index.tsx index 8f5f52ca9..7b3b02f53 100644 --- a/src/plugins/contentWarning/index.tsx +++ b/src/plugins/contentWarning/index.tsx @@ -124,7 +124,6 @@ export default definePlugin({ ], beforeSave() { - console.log(triggerWords); DataStore.set(WORDS_KEY, triggerWords); return true; }, @@ -139,6 +138,5 @@ export default definePlugin({ async start() { triggerWords = await DataStore.get(WORDS_KEY) ?? [""]; - console.log(triggerWords); } });