diff --git a/src/ui/databrowserModule/databrowser/databrowser.component.ts b/src/ui/databrowserModule/databrowser/databrowser.component.ts
index e8705a558f6c94a746dafd3d3fdb83f19b7d2903..2dd92a75a3889871bf8d00f6ec71b30f8011c630 100644
--- a/src/ui/databrowserModule/databrowser/databrowser.component.ts
+++ b/src/ui/databrowserModule/databrowser/databrowser.component.ts
@@ -1,15 +1,10 @@
 import { ChangeDetectionStrategy, ChangeDetectorRef, Component, EventEmitter, Input, OnChanges, OnDestroy, OnInit, Output, ViewChild } from "@angular/core";
 import { merge, Observable, Subscription } from "rxjs";
-import { scan, shareReplay } from "rxjs/operators";
 import { LoggingService } from "src/services/logging.service";
-import { ViewerPreviewFile } from "src/services/state/dataStore.store";
 import { IDataEntry } from "src/services/stateStore.service";
 import { CountedDataModality, DatabrowserService } from "../databrowser.service";
-import { KgSingleDatasetService } from "../kgSingleDatasetService.service";
 import { ModalityPicker } from "../modalityPicker/modalityPicker.component";
 
-const scanFn: (acc: any[], curr: any) => any[] = (acc, curr) => [curr, ...acc]
-
 @Component({
   selector : 'data-browser',
   templateUrl : './databrowser.template.html',
@@ -61,13 +56,9 @@ export class DataBrowser implements OnChanges, OnDestroy, OnInit {
   constructor(
     private dbService: DatabrowserService,
     private cdr: ChangeDetectorRef,
-    private singleDatasetSservice: KgSingleDatasetService,
     private log: LoggingService,
   ) {
     this.favDataentries$ = this.dbService.favedDataentries$
-
-    const structuredData = window.document.querySelector('script[type="application/ld+json"]')
-    
   }
 
   public ngOnChanges() {