diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 57c77524f..0efdf3c7b 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -11,7 +11,7 @@ import { AppComponent } from './app.component'; import { HttpClientModule } from '@angular/common/http'; import { InAppBrowser } from '@ionic-native/in-app-browser/ngx'; -import { IonicSelectableModule } from 'ionic-selectable'; +/* import { IonicSelectableModule } from 'ionic-selectable'; */ @NgModule({ declarations: [AppComponent], @@ -23,7 +23,7 @@ import { IonicSelectableModule } from 'ionic-selectable'; HttpClientModule, { provide: RouteReuseStrategy, useClass: IonicRouteStrategy }, InAppBrowser, - IonicSelectableModule + /* IonicSelectableModule */ ], bootstrap: [AppComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA] diff --git a/src/app/home/home.module.ts b/src/app/home/home.module.ts index 70ac080a1..4194c05aa 100644 --- a/src/app/home/home.module.ts +++ b/src/app/home/home.module.ts @@ -7,7 +7,7 @@ import { IonicModule } from '@ionic/angular'; import { HomePageRoutingModule } from './home-routing.module'; import { HomePage } from './home.page'; -import { IonicSelectableModule } from 'ionic-selectable'; +/* import { IonicSelectableModule } from 'ionic-selectable'; */ @NgModule({ @@ -16,7 +16,7 @@ import { IonicSelectableModule } from 'ionic-selectable'; FormsModule, IonicModule, HomePageRoutingModule, - IonicSelectableModule + /* IonicSelectableModule */ ], declarations: [HomePage] })