From de283d2a93c1a5a5611ef51d74f2e9df91b7eddf Mon Sep 17 00:00:00 2001 From: Viktoria Polyakova Date: Sun, 25 Jan 2026 22:06:44 +0000 Subject: [PATCH] fix: remove unused ValidationPipe import in main.ts The ValidationPipe import was commented out and not being used in the code. This commit removes the unused import to clean up the code and avoid potential confusion. The Logger import remains active and is still in use. --- backend/src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/main.ts b/backend/src/main.ts index 5824ab9..eecca81 100644 --- a/backend/src/main.ts +++ b/backend/src/main.ts @@ -5,8 +5,8 @@ import { NestFactory } from '@nestjs/core'; if (!global.crypto) { global.crypto = webcrypto as any; } -//import { Logger } from '@nestjs/common'; -import { Logger, ValidationPipe } from '@nestjs/common'; +import { Logger } from '@nestjs/common'; +//import { Logger, ValidationPipe } from '@nestjs/common'; import { NestExpressApplication } from '@nestjs/platform-express'; import { utilities, WinstonModule } from 'nest-winston'; import winston from 'winston';