fixed prettier issues

This commit is contained in:
Kevsl
2024-06-07 11:17:55 +02:00
parent 7648b6432a
commit 5b2056295f
6 changed files with 10 additions and 17 deletions

View File

@@ -1,4 +1,3 @@
/* eslint-disable prettier/prettier */
import {
Body,
Controller,
@@ -36,7 +35,7 @@ export class OfferController {
createRole(
@Body()
dto: OfferDto,
@GetUser() user: User
@GetUser() user: User,
) {
return this.offerService.createOffer(user.id, dto);
}
@@ -46,7 +45,7 @@ export class OfferController {
editOfferById(
@Param('id') offerId: string,
@Body() dto: OfferDto,
@GetUser() user: User
@GetUser() user: User,
) {
return this.offerService.editOfferById(user.id, offerId, dto);
}