Remove console.log

This commit is contained in:
Yana De Pauw
2022-05-11 13:30:11 +02:00
parent 166a163c24
commit 67ffa89c47

View File

@@ -70,7 +70,6 @@ export abstract class ThemedComponent<T> implements OnInit, OnDestroy, OnChanges
this.lazyLoadSub = this.resolveThemedComponent(this.themeService.getThemeName()).pipe( this.lazyLoadSub = this.resolveThemedComponent(this.themeService.getThemeName()).pipe(
switchMap((themedFile: any) => { switchMap((themedFile: any) => {
console.log(themedFile);
if (hasValue(themedFile) && hasValue(themedFile[this.getComponentName()])) { if (hasValue(themedFile) && hasValue(themedFile[this.getComponentName()])) {
// if the file is not null, and exports a component with the specified name, // if the file is not null, and exports a component with the specified name,
// return that component // return that component