From 1b7a62960adb4f45f81f9bb063d9a0baa83179a4 Mon Sep 17 00:00:00 2001 From: sebo <sebastian.bergandy@external.mgm-cp.com> Date: Thu, 13 Feb 2025 14:59:38 +0100 Subject: [PATCH] OZG-5977 fix imports --- .../src/lib/binary-file.service.ts | 28 ++----------------- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/alfa-client/libs/binary-file-shared/src/lib/binary-file.service.ts b/alfa-client/libs/binary-file-shared/src/lib/binary-file.service.ts index b07c522742..22804839eb 100644 --- a/alfa-client/libs/binary-file-shared/src/lib/binary-file.service.ts +++ b/alfa-client/libs/binary-file-shared/src/lib/binary-file.service.ts @@ -21,39 +21,17 @@ * Die sprachspezifischen Genehmigungen und Beschränkungen * unter der Lizenz sind dem Lizenztext zu entnehmen. */ -import { - BlobWithFileName, - createEmptyStateResource, - createErrorStateResource, - createStateResource, - EMPTY_ARRAY, - EMPTY_STRING, - getMessageForInvalidParam, - HttpError, - HttpHeader, - isNotNil, - isUnprocessableEntity, - isValidationFieldFileSizeExceedError, - sanitizeFileName, - StateResource, -} from '@alfa-client/tech-shared'; +import { BlobWithFileName, createEmptyStateResource, createErrorStateResource, createStateResource, EMPTY_ARRAY, EMPTY_STRING, getMessageForInvalidParam, HttpError, HttpHeader, isNotNil, isUnprocessableEntity, isValidationFieldFileSizeExceedError, sanitizeFileName, StateResource, } from '@alfa-client/tech-shared'; import { SnackBarService } from '@alfa-client/ui'; import { HttpErrorResponse, HttpResponse } from '@angular/common/http'; import { Injectable } from '@angular/core'; -import { faker } from '@faker-js/faker/.'; +import { faker } from '@faker-js/faker'; import { getUrl, Resource, ResourceUri } from '@ngxp/rest'; import { saveAs } from 'file-saver'; import { isNil } from 'lodash-es'; import { BehaviorSubject, forkJoin, Observable, of, throwError } from 'rxjs'; import { catchError, map, mergeMap, startWith, switchMap } from 'rxjs/operators'; -import { - BinaryFileListResource, - BinaryFileResource, - FileUploadType, - ToUploadFile, - UploadFile, - UploadFilesByType, -} from './binary-file.model'; +import { BinaryFileListResource, BinaryFileResource, FileUploadType, ToUploadFile, UploadFile, UploadFilesByType, } from './binary-file.model'; import { BinaryFileRepository } from './binary-file.repository'; @Injectable({ providedIn: 'root' }) -- GitLab