Skip to content

Commit

Permalink
fix(ngx-snackbar): use inject
Browse files Browse the repository at this point in the history
  • Loading branch information
vapkse committed Jul 23, 2024
1 parent 042cf24 commit eb835c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/snackbar/src/snackbar.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AfterViewInit, ChangeDetectionStrategy, Component, ElementRef, EventEmitter, HostListener, Input, OnDestroy, OnInit, Output, inject } from '@angular/core';
import { AfterViewInit, ChangeDetectionStrategy, Component, ElementRef, EventEmitter, HostListener, inject, Input, OnDestroy, OnInit, Output } from '@angular/core';
import { NgxDestroy } from '@hug/ngx-core';
import { Subject, Subscription, debounce, delay, take, takeUntil, tap, timer } from 'rxjs';
import { debounce, delay, Subject, Subscription, take, takeUntil, tap, timer } from 'rxjs';

interface Animation {
before: CSSStyleDeclaration;
Expand Down

0 comments on commit eb835c1

Please sign in to comment.