Tsaqif Razin

Results 4 comments of Tsaqif Razin

Hi @alphamikle, Thanks for replying. I've updated the version but the error still exists

Maybe this information help this is my package.json ``` "dependencies": { "@nestjs/common": "^9.0.0", "@nestjs/config": "^2.2.0", "@nestjs/core": "^9.0.0", "@nestjs/passport": "^9.0.1", "@nestjs/platform-express": "^9.0.0", "@nestjs/swagger": "^6.1.2", "@nestjs/typeorm": "^9.0.1", "axios": "^1.3.2", "class-transformer": "^0.5.1", "class-validator":...

I'm sorry, I give you the wrong code. ``` @Controller('category') @ApiTags('category') @UseInterceptors(TransformResponseInterceptor) export class CategoryController { constructor( private readonly categoryService: CategoryService, private readonly dataSource: DataSource, ) {} @Get() @ApiBearerAuth() @UseGuards(JwtAuthGuard,...

> As a **temporary** solution. Downgrade packages nest/common and nest/core to version 9.2.1: > > ``` > "@nestjs/common": "9.2.1", > "@nestjs/core": "9.2.1", > ``` > > Works for me Works...