From 0061b42777c996d9f29acaed7cd5c5532b6b917d Mon Sep 17 00:00:00 2001 From: camila314 <47485054+camila314@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:42:15 -0500 Subject: [PATCH] fix some leftovers --- src/plugins/contentWarning/index.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/plugins/contentWarning/index.tsx b/src/plugins/contentWarning/index.tsx index 52e1e7c5b..359a00573 100644 --- a/src/plugins/contentWarning/index.tsx +++ b/src/plugins/contentWarning/index.tsx @@ -120,7 +120,7 @@ const settings = definePluginSettings({ export default definePlugin({ name: "ContentWarning", authors: [Devs.camila314], - description: "Allows you to specify certain trigger words", + description: "Allows you to specify certain trigger words that will be blurred by default. Clicking on the blurred content will reveal it.", settings, patches: [ { @@ -133,7 +133,6 @@ export default definePlugin({ ], beforeSave() { - console.log(triggerWords); DataStore.set(WORDS_KEY, triggerWords); return true; }, @@ -148,6 +147,5 @@ export default definePlugin({ async start() { triggerWords = await DataStore.get(WORDS_KEY) ?? [""]; - console.log(triggerWords); } });