This commit is contained in:
David Arranz 2025-09-02 13:06:25 +02:00
parent 0420b8e090
commit b302870647

View File

@ -17,7 +17,7 @@ export class UpdateCustomerController extends ExpressController {
const result = await this.useCase.execute({ customer_id, companyId, dto });
return result.match(
(data) => this.created(data),
(data) => this.ok(data),
(err) => this.handleError(err)
);
}