Skip to content

Commit e1c6ed6

Browse files
committed
linting
1 parent 7c16479 commit e1c6ed6

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

apps/backend-services/src/azure/azure.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import {
4646
} from "@/auth/identity.helpers";
4747
import { AzureService } from "@/azure/azure.service";
4848
import { ClassifierService } from "@/azure/classifier.service";
49-
import { MulterExceptionFilter } from "@/filters/multer-exception.filter";
5049
import { ClassificationResultDto } from "@/azure/dto/classification-result.dto";
5150
import {
5251
CLASSIFIER_OTHER_AZURE_PREFIX,
@@ -80,6 +79,7 @@ import {
8079
buildBlobPrefixPath,
8180
OperationCategory,
8281
} from "@/blob-storage/storage-path-builder";
82+
import { MulterExceptionFilter } from "@/filters/multer-exception.filter";
8383
import { GroupRole } from "@/generated/edge";
8484
import { AppLoggerService } from "@/logging/app-logger.service";
8585

apps/backend-services/src/filters/multer-exception.filter.spec.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ describe("MulterExceptionFilter", () => {
1414
}),
1515
};
1616

17-
filter.catch(
18-
new MulterError("LIMIT_FILE_SIZE", "files"),
19-
host as never,
20-
);
17+
filter.catch(new MulterError("LIMIT_FILE_SIZE", "files"), host as never);
2118

2219
expect(status).toHaveBeenCalledWith(413);
2320
expect(json).toHaveBeenCalledWith(

0 commit comments

Comments
 (0)