From dc01065792b08966214b258aa2530b957dc7c702 Mon Sep 17 00:00:00 2001 From: Andres Date: Tue, 18 Jul 2023 17:44:15 +0200 Subject: [PATCH] fix typo --- src/modules/auth/dto/recover-password.dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/auth/dto/recover-password.dto.ts b/src/modules/auth/dto/recover-password.dto.ts index fee0ff0..e9fd985 100644 --- a/src/modules/auth/dto/recover-password.dto.ts +++ b/src/modules/auth/dto/recover-password.dto.ts @@ -9,7 +9,7 @@ export class RecoverPasswordDto { @ApiProperty({ description: `HTML template to be sent in the email;\n ##name## will be replaced with the user's name; \n ##token## will be replaced with the password recovery token`, example: - '

Hi, ##name#

Click here to recover your password

', + '

Hi, ##name##

Click here to recover your password

', }) @IsString() @IsOptional()