From a79860b3acdaf109d39a1628d4085c07ef5ce6a6 Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Fri, 29 Oct 2021 01:14:31 +0100 Subject: [PATCH] remove console.log in components --- .../vertical-icons-panel/src/lib/components/Settings.tsx | 1 - .../src/lib/remix-ui-vertical-icons-panel.tsx | 2 -- 2 files changed, 3 deletions(-) diff --git a/libs/remix-ui/vertical-icons-panel/src/lib/components/Settings.tsx b/libs/remix-ui/vertical-icons-panel/src/lib/components/Settings.tsx index 79239158d8..973ed01312 100644 --- a/libs/remix-ui/vertical-icons-panel/src/lib/components/Settings.tsx +++ b/libs/remix-ui/vertical-icons-panel/src/lib/components/Settings.tsx @@ -30,7 +30,6 @@ function Settings ({ scrollableRef, verticalIconsPlugin, itemContextAction, addA const themeModule = verticalIconsPlugin.registry.get('themeModule').api themeModule.events.on('themeChanged', (theme: any) => { onThemeChanged(theme.quality) - console.log('There was a theme change and is caught in settings. This is the theme payload ', theme) }) }, []) return ( diff --git a/libs/remix-ui/vertical-icons-panel/src/lib/remix-ui-vertical-icons-panel.tsx b/libs/remix-ui/vertical-icons-panel/src/lib/remix-ui-vertical-icons-panel.tsx index 1375a12b97..736749a1be 100644 --- a/libs/remix-ui/vertical-icons-panel/src/lib/remix-ui-vertical-icons-panel.tsx +++ b/libs/remix-ui/vertical-icons-panel/src/lib/remix-ui-vertical-icons-panel.tsx @@ -76,7 +76,6 @@ export function RemixUiVerticalIconsPanel ({ const themeModule = verticalIconsPlugin.registry.get('themeModule').api themeModule.events.on('themeChanged', (theme: any) => { onThemeChanged(theme.quality) - console.log('There was a theme change. This is the theme payload ', theme) }) }, []) @@ -84,7 +83,6 @@ export function RemixUiVerticalIconsPanel ({ const themeModule = verticalIconsPlugin.registry.get('themeModule').api themeModule.events.on('themeChanged', (theme: any) => { onThemeChanged(theme.quality) - console.log('There was a theme change. This is the theme payload ', theme) }) }, [])