From 9181ac67572b540766343e78cb9bd46da446c87c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Mon, 23 Nov 2020 12:33:20 +0100 Subject: [PATCH] MOBILE-3565 search: Remove CoreSearchComponentsModule as a provider --- package-lock.json | 2 +- src/core/features/search/search.module.ts | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 229012d24..cb5a21026 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6522,7 +6522,7 @@ "integrity": "sha512-EYC5eQFVkoYXq39l7tYKE6lEjHJ04mvTmKXxGL7quHLdFPfJMNzru/UYpn92AOfpl3PQaZmou78C7EgmFOwFQQ==" }, "cordova-plugin-wkuserscript": { - "version": "git+https://github.com/moodlemobile/cordova-plugin-wkuserscript.git#6413f4bb3c2565f353e690b5c1450b69ad9e860e", + "version": "git+https://github.com/moodlemobile/cordova-plugin-wkuserscript.git#aa77d0f98a3fb106f2e798e5adf5882f01a2c947", "from": "git+https://github.com/moodlemobile/cordova-plugin-wkuserscript.git" }, "cordova-plugin-wkwebview-cookies": { diff --git a/src/core/features/search/search.module.ts b/src/core/features/search/search.module.ts index a59da3976..89ba8527e 100644 --- a/src/core/features/search/search.module.ts +++ b/src/core/features/search/search.module.ts @@ -20,13 +20,10 @@ import { CoreSearchComponentsModule } from './components/components.module'; import { SITE_SCHEMA } from './services/search-history-db'; @NgModule({ - declarations: [ - ], imports: [ CoreSearchComponentsModule, ], providers: [ - CoreSearchComponentsModule, { provide: CORE_SITE_SCHEMAS, useValue: [SITE_SCHEMA], multi: true }, ], })