Skip to content

Commit c6eed17

Browse files
committed
chore(*): fix strange import
1 parent 348fc8c commit c6eed17

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

projects/igniteui-angular/directives/src/directives/toggle/toggle.directive.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ChangeDetectionStrategy, Component, DebugElement, ViewChild, ElementRef, OnInit, inject as inject_1 } from '@angular/core';
1+
import { ChangeDetectionStrategy, Component, DebugElement, ViewChild, ElementRef, OnInit, inject } from '@angular/core';
22
import { fakeAsync, TestBed, tick, waitForAsync } from '@angular/core/testing';
33
import { By } from '@angular/platform-browser';
44
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
@@ -716,7 +716,7 @@ export class IgxToggleServiceInjectComponent {
716716
imports: [IgxToggleDirective]
717717
})
718718
export class IgxOverlayServiceComponent {
719-
public overlay = inject_1(IgxOverlayService);
719+
public overlay = inject(IgxOverlayService);
720720

721721
@ViewChild(IgxToggleDirective, { static: true }) public toggle: IgxToggleDirective;
722722
@ViewChild(`other`, { static: true }) public other: ElementRef;

0 commit comments

Comments
 (0)