From b2c65bd209269334ea7cc7e26681c0258b5e2073 Mon Sep 17 00:00:00 2001 From: farfromrefug Date: Tue, 17 Dec 2024 15:40:59 +0100 Subject: [PATCH] chore: cleanup --- app/utils/index.common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/index.common.ts b/app/utils/index.common.ts index 5bfa669..ac796bf 100644 --- a/app/utils/index.common.ts +++ b/app/utils/index.common.ts @@ -27,7 +27,7 @@ export function groupByArray(items: T[], keyGetter: (item: T) => string[]) { export function setCustomCssRootClass(className, oldClassName?) { const rootView = Application.getRootView(); const rootModalViews = rootView._getRootModalViews(); - DEV_LOG && console.log('setCustomCssRootClass', rootView, className, oldClassName); + // DEV_LOG && console.log('setCustomCssRootClass', rootView, className, oldClassName); function addCssClass(rootView, cssClass) { cssClass = `${CSSUtils.CLASS_PREFIX}${cssClass}`; CSSUtils.pushToSystemCssClasses(cssClass);