diff --git a/showcases/angular-showcase/src/app/components/switch/switch.component.ts b/showcases/angular-showcase/src/app/components/switch/switch.component.ts index a4cab180e87..2d6c3f5a992 100644 --- a/showcases/angular-showcase/src/app/components/switch/switch.component.ts +++ b/showcases/angular-showcase/src/app/components/switch/switch.component.ts @@ -1,5 +1,4 @@ import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; -import { DBInput } from '@db-ui/ngx-components/src'; import { DefaultComponent } from '../default.component'; import defaultComponentVariants from '../../../../../shared/switch.json'; import { DBSwitch } from '../../../../../../output/angular/src/components/switch'; @@ -12,8 +11,7 @@ import { environment } from '../../../environments/environment'; imports: [ environment.webComponents ? [DefaultComponent] - : [DefaultComponent, DBSwitch, DBInfotext], - DBInput + : [DefaultComponent, DBSwitch, DBInfotext] ], schemas: [CUSTOM_ELEMENTS_SCHEMA], standalone: true