From 5fbf689bd4f1857c0bb61c47682713c057118f0d Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Mon, 28 Oct 2024 12:18:07 -0400 Subject: [PATCH] Remove PR Console Logs --- src/equicordplugins/hideChatButtons/index.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/equicordplugins/hideChatButtons/index.tsx b/src/equicordplugins/hideChatButtons/index.tsx index 8f16b510..3411200d 100644 --- a/src/equicordplugins/hideChatButtons/index.tsx +++ b/src/equicordplugins/hideChatButtons/index.tsx @@ -24,15 +24,12 @@ const settings = definePluginSettings({ description: "opened by default", default: false, onChange: (store: { open: boolean; }) => { - console.log("changing open", store.open); hidechatbuttonsopen = store.open; } }, }); -// id={"menu-button-" + (props.open ? "close" : "open")} function HideToggleButton(props: { open: boolean | undefined, onClick: MouseEventHandler; }) { - console.log(props.open); return ( { - console.log("useMemo: changing open", open); hidechatbuttonsopen = open; }, [open]);