From a3fe6a7826071d8c072b2eee5d0d7ae9e1004d0b Mon Sep 17 00:00:00 2001 From: Aswath K Date: Mon, 8 Aug 2022 19:24:37 +0530 Subject: [PATCH] fix: Remove unwanted logs which may confuse the users (#15815) --- app/client/src/utils/WidgetFactory.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/client/src/utils/WidgetFactory.tsx b/app/client/src/utils/WidgetFactory.tsx index a3c603cfdd..234dae70a1 100644 --- a/app/client/src/utils/WidgetFactory.tsx +++ b/app/client/src/utils/WidgetFactory.tsx @@ -223,7 +223,6 @@ class WidgetFactory { ): readonly PropertyPaneConfig[] { const map = this.propertyPaneContentConfigsMap.get(type); if (!map) { - log.error("Widget property pane content configs not defined", type); return []; } return map; @@ -234,7 +233,6 @@ class WidgetFactory { ): readonly PropertyPaneConfig[] { const map = this.propertyPaneStyleConfigsMap.get(type); if (!map) { - log.error("Widget property pane style configs not defined", type); return []; } return map;