diff --git a/src/modules/auth/auth.controller.ts b/src/modules/auth/auth.controller.ts index a791920..f0846b4 100644 --- a/src/modules/auth/auth.controller.ts +++ b/src/modules/auth/auth.controller.ts @@ -107,7 +107,7 @@ export class AuthController { @UseGuards(JwtAuthGuard) @HttpCode(HttpStatus.NO_CONTENT) @Delete('me') - async deleteUserAccount(@Request() req): Promise { + async deleteUserAccount(@Request() req): Promise { const userId = req.user.id return await this.commandBus.execute(new DeleteCurrentAccountCommand(userId))