From 4fb3ff25d971cc03753d379dc9af8f787fa01611 Mon Sep 17 00:00:00 2001 From: Chneemann Date: Sat, 5 Apr 2025 13:06:26 +0200 Subject: [PATCH] fix: corrected filename typo from toast-notification.servic.ts to toast-notification.service.ts --- src/app/components/add-task/add-task.component.ts | 2 +- src/app/components/board/board.component.ts | 2 +- .../contacts/contact-detail/contact-detail.component.ts | 2 +- src/app/guards/authenticated.guard.ts | 2 +- src/app/services/auth.service.ts | 2 +- ...ast-notification.servic.ts => toast-notification.service.ts} | 0 .../contact-overlay/contact-form/contact-form.component.ts | 2 +- .../components/overlay/task-overlay/task-overlay.component.ts | 2 +- 8 files changed, 7 insertions(+), 7 deletions(-) rename src/app/services/{toast-notification.servic.ts => toast-notification.service.ts} (100%) diff --git a/src/app/components/add-task/add-task.component.ts b/src/app/components/add-task/add-task.component.ts index 5311400..8dd2420 100644 --- a/src/app/components/add-task/add-task.component.ts +++ b/src/app/components/add-task/add-task.component.ts @@ -12,7 +12,7 @@ import { firstValueFrom, map } from 'rxjs'; import { TaskService } from '../../services/task.service'; import { ApiService } from '../../services/api.service'; import { UpdateNotifierService } from '../../services/update-notifier.service'; -import { ToastNotificationService } from '../../services/toast-notification.servic'; +import { ToastNotificationService } from '../../services/toast-notification.service'; @Component({ selector: 'app-add-task', diff --git a/src/app/components/board/board.component.ts b/src/app/components/board/board.component.ts index 51c5ba5..a6939db 100644 --- a/src/app/components/board/board.component.ts +++ b/src/app/components/board/board.component.ts @@ -14,7 +14,7 @@ import { TaskService } from '../../services/task.service'; import { LoadingSpinnerComponent } from '../../shared/components/loading-spinner/loading-spinner.component'; import { finalize, Subject, takeUntil } from 'rxjs'; import { UpdateNotifierService } from '../../services/update-notifier.service'; -import { ToastNotificationService } from '../../services/toast-notification.servic'; +import { ToastNotificationService } from '../../services/toast-notification.service'; import { ResizeService } from '../../services/resize.service'; @Component({ diff --git a/src/app/components/contacts/contact-detail/contact-detail.component.ts b/src/app/components/contacts/contact-detail/contact-detail.component.ts index 868d950..434eb64 100644 --- a/src/app/components/contacts/contact-detail/contact-detail.component.ts +++ b/src/app/components/contacts/contact-detail/contact-detail.component.ts @@ -12,7 +12,7 @@ import { finalize, lastValueFrom } from 'rxjs'; import { User } from '../../../interfaces/user.interface'; import { OverlayService } from '../../../services/overlay.service'; import { ApiService } from '../../../services/api.service'; -import { ToastNotificationService } from '../../../services/toast-notification.servic'; +import { ToastNotificationService } from '../../../services/toast-notification.service'; import { UpdateNotifierService } from '../../../services/update-notifier.service'; import { ConfirmDialogComponent } from '../../../shared/components/confirm-dialog/confirm-dialog.component'; diff --git a/src/app/guards/authenticated.guard.ts b/src/app/guards/authenticated.guard.ts index 9206a4c..6dfb7df 100644 --- a/src/app/guards/authenticated.guard.ts +++ b/src/app/guards/authenticated.guard.ts @@ -4,7 +4,7 @@ import { catchError, map, Observable, of } from 'rxjs'; import { AuthService } from '../services/auth.service'; import { TokenService } from '../services/token.service'; import { ToastrService } from 'ngx-toastr'; -import { ToastNotificationService } from '../services/toast-notification.servic'; +import { ToastNotificationService } from '../services/toast-notification.service'; @Injectable({ providedIn: 'root', diff --git a/src/app/services/auth.service.ts b/src/app/services/auth.service.ts index c898060..3963428 100755 --- a/src/app/services/auth.service.ts +++ b/src/app/services/auth.service.ts @@ -10,7 +10,7 @@ import { import { ApiService } from './api.service'; import { TokenService } from './token.service'; import { Router } from '@angular/router'; -import { ToastNotificationService } from './toast-notification.servic'; +import { ToastNotificationService } from './toast-notification.service'; @Injectable({ providedIn: 'root', diff --git a/src/app/services/toast-notification.servic.ts b/src/app/services/toast-notification.service.ts similarity index 100% rename from src/app/services/toast-notification.servic.ts rename to src/app/services/toast-notification.service.ts diff --git a/src/app/shared/components/overlay/contact-overlay/contact-form/contact-form.component.ts b/src/app/shared/components/overlay/contact-overlay/contact-form/contact-form.component.ts index 348bb31..728b4fb 100644 --- a/src/app/shared/components/overlay/contact-overlay/contact-form/contact-form.component.ts +++ b/src/app/shared/components/overlay/contact-overlay/contact-form/contact-form.component.ts @@ -13,7 +13,7 @@ import { FormBtnComponent } from '../../../buttons/form-btn/form-btn.component'; import { ResizeService } from '../../../../../services/resize.service'; import { lastValueFrom } from 'rxjs'; import { ApiService } from '../../../../../services/api.service'; -import { ToastNotificationService } from '../../../../../services/toast-notification.servic'; +import { ToastNotificationService } from '../../../../../services/toast-notification.service'; import { UpdateNotifierService } from '../../../../../services/update-notifier.service'; import { User } from '../../../../../interfaces/user.interface'; diff --git a/src/app/shared/components/overlay/task-overlay/task-overlay.component.ts b/src/app/shared/components/overlay/task-overlay/task-overlay.component.ts index bfe21b2..ff04fe5 100644 --- a/src/app/shared/components/overlay/task-overlay/task-overlay.component.ts +++ b/src/app/shared/components/overlay/task-overlay/task-overlay.component.ts @@ -11,7 +11,7 @@ import { AuthService } from '../../../../services/auth.service'; import { map } from 'rxjs'; import { ApiService } from '../../../../services/api.service'; import { UpdateNotifierService } from '../../../../services/update-notifier.service'; -import { ToastNotificationService } from '../../../../services/toast-notification.servic'; +import { ToastNotificationService } from '../../../../services/toast-notification.service'; import { ConfirmDialogComponent } from '../../confirm-dialog/confirm-dialog.component'; @Component({