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); } });