fix types

This commit is contained in:
Philipinho
2024-03-25 02:19:28 +00:00
parent df6b0326ba
commit cacb5606b1
5 changed files with 18 additions and 18 deletions

View File

@ -77,7 +77,7 @@ export class AttachmentService {
return attachment;
} catch (err) {
console.log(err);
throw new BadRequestException(err.message);
throw new BadRequestException('Failed to upload file');
}
}
@ -119,7 +119,7 @@ export class AttachmentService {
return attachment;
} catch (err) {
console.log(err);
throw new BadRequestException(err.message);
throw new BadRequestException('Failed to upload file');
}
}
@ -158,7 +158,7 @@ export class AttachmentService {
return attachment;
} catch (err) {
console.log(err);
throw new BadRequestException(err.message);
throw new BadRequestException('Failed to upload file');
}
}
}