From d312a266a37c2fddf2a661c88f3400b49bdcb8a0 Mon Sep 17 00:00:00 2001 From: Rico040 <93081680+Rico040@users.noreply.github.com> Date: Sat, 8 Jun 2024 15:24:35 +1000 Subject: [PATCH] don't spam debug logs --- plugins/lowercase/src/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/lowercase/src/index.tsx b/plugins/lowercase/src/index.tsx index 23a4ec7..0796235 100644 --- a/plugins/lowercase/src/index.tsx +++ b/plugins/lowercase/src/index.tsx @@ -9,10 +9,9 @@ const unpatchText = before("render", RN.Text, ([x]) => { textTransform: 'lowercase' }; x.style = newStyle; - console.log(x.style) }) export function onUnload() { - unpatchText() + unpatchText(); } \ No newline at end of file