diff --git a/package-lock.json b/package-lock.json
index b3a6391e464b7905d2c265714d8c00185140b936..e9fcadcbb74b95f29141f9a23f18dabada668714 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -82,6 +82,7 @@
         "@ionic/cli": "^7.1.5",
         "@polkadot/typegen": "^10.11.1",
         "@polkadot/types": "^10.11.1",
+        "@rx-angular/eslint-plugin": "~2.0.0",
         "@types/jasmine": "~4.0.3",
         "@types/jasminewd2": "~2.0.10",
         "@types/node": "^18.18.13",
@@ -8101,6 +8102,20 @@
         "rxjs": "^6.5.3 || ^7.4.0"
       }
     },
+    "node_modules/@rx-angular/eslint-plugin": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/@rx-angular/eslint-plugin/-/eslint-plugin-2.0.0.tgz",
+      "integrity": "sha512-/YHeWKPC3K1ekXC1tNmzmD/86zP4P6fZrWBQv3Rl9Elp/VIi50ZY4Vb1U831fUY9ekPOiFA8xYzSNtVPS7lI4A==",
+      "dev": true,
+      "dependencies": {
+        "@typescript-eslint/utils": "^6.10.0"
+      },
+      "peerDependencies": {
+        "@typescript-eslint/parser": "^6.10.0",
+        "eslint": ">=8.0.0",
+        "typescript": ">=4.3.5"
+      }
+    },
     "node_modules/@rx-angular/state": {
       "version": "17.0.0",
       "resolved": "https://registry.npmjs.org/@rx-angular/state/-/state-17.0.0.tgz",
diff --git a/package.json b/package.json
index 72a532711d761889842fc7010cbbbadf42cbe748..7a421595efce21a2e7a63b3c52d7e39e1e191967 100644
--- a/package.json
+++ b/package.json
@@ -106,6 +106,7 @@
     "@types/node": "^18.18.13",
     "@typescript-eslint/eslint-plugin": "6.12.0",
     "@typescript-eslint/parser": "6.12.0",
+    "@rx-angular/eslint-plugin": "~2.0.0",
     "eslint": "^8.31.0",
     "eslint-config-prettier": "~8.6.0",
     "eslint-plugin-import": "2.26.0",
diff --git a/src/app/account/auth.controller.ts b/src/app/account/auth.controller.ts
index 4c4ecd39e114fc1f1eb290c010d525fb03d188bf..9f4b7fa555f05e82e3bf42204e1381626e9a6c49 100644
--- a/src/app/account/auth.controller.ts
+++ b/src/app/account/auth.controller.ts
@@ -101,8 +101,7 @@ export class AuthController implements IAuthController {
         modal = await this.modalCtrl.create({
           component: AuthModal,
           componentProps: <AuthModalOptions>{
-            auth: opts?.auth,
-            scrollY: false // TODO remove this !
+            auth: opts?.auth
           }
         });
         break;
@@ -110,8 +109,7 @@ export class AuthController implements IAuthController {
         modal = await this.modalCtrl.create({
           component: AuthV2Modal,
           componentProps: <AuthModalOptions>{
-            auth: opts?.auth,
-            scrollY: false // TODO remove this !
+            auth: opts?.auth
           }
         });
         break;