From 374a93bc8e8f9e70db26fb8578bb2c0bbb4bb4ed Mon Sep 17 00:00:00 2001
From: Xiao Gui <xgui3783@gmail.com>
Date: Thu, 14 Sep 2023 11:15:29 +0200
Subject: [PATCH] fix lint

---
 .../nehuba/nehubaViewer/nehubaViewer.component.ts             | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/viewerModule/nehuba/nehubaViewer/nehubaViewer.component.ts b/src/viewerModule/nehuba/nehubaViewer/nehubaViewer.component.ts
index 3871a62d8..2a06e3f2d 100644
--- a/src/viewerModule/nehuba/nehubaViewer/nehubaViewer.component.ts
+++ b/src/viewerModule/nehuba/nehubaViewer/nehubaViewer.component.ts
@@ -404,7 +404,7 @@ export class NehubaViewerUnit implements OnDestroy {
 
   public loadNehuba() {
     
-    const { registerActionListener, createNehubaViewer } = this.exportNehuba
+    const { createNehubaViewer } = this.exportNehuba
 
     this.nehubaViewer = createNehubaViewer(this.config, (err: string) => {
       /* print in debug mode */
@@ -921,7 +921,7 @@ export class NehubaViewerUnit implements OnDestroy {
 }
 
 
-const noop = (event: MouseEvent) => {
+const noop = (_event: MouseEvent) => {
   // TODO either emit contextmenu
   // or capture longtouch on higher level as contextmenu
   // at the moment, this is required to override default behavior (move to cursur location)
-- 
GitLab