From cb27394f4a83c3e84bd17f9f34bb5366372de5cc Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Thu, 21 Sep 2023 00:15:33 +0000 Subject: [PATCH] style: format code with Prettier This commit fixes the style issues introduced in 5b8f0c7 according to the output from Prettier. Details: None --- .../domain/commands/get-signed-url/get-signed-url.command.ts | 5 ++++- .../queries/check-user-password/check-user-password.query.ts | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/modules/uploader/domain/commands/get-signed-url/get-signed-url.command.ts b/src/modules/uploader/domain/commands/get-signed-url/get-signed-url.command.ts index 6c322cd..95fa74c 100644 --- a/src/modules/uploader/domain/commands/get-signed-url/get-signed-url.command.ts +++ b/src/modules/uploader/domain/commands/get-signed-url/get-signed-url.command.ts @@ -1,5 +1,8 @@ import { ICommand } from '@nestjs/cqrs'; export class GetSignedUrlCommand implements ICommand { - constructor(public readonly key: string, public readonly bucket?: string) {} + constructor( + public readonly key: string, + public readonly bucket?: string, + ) {} } diff --git a/src/modules/users/domain/queries/check-user-password/check-user-password.query.ts b/src/modules/users/domain/queries/check-user-password/check-user-password.query.ts index 9223615..c088e15 100644 --- a/src/modules/users/domain/queries/check-user-password/check-user-password.query.ts +++ b/src/modules/users/domain/queries/check-user-password/check-user-password.query.ts @@ -1,5 +1,8 @@ import { IQuery } from '@nestjs/cqrs'; export class CheckUserPasswordQuery implements IQuery { - constructor(public email: string, public password: string) {} + constructor( + public email: string, + public password: string, + ) {} }