diff --git a/backend/src/api/categories/categories.controller.ts b/backend/src/api/categories/categories.controller.ts
index 7f3323515bf1dafba7123afeae226044a0fcad2f..003b4924d88c54f5a8e7b96ecea2b8a8661097e8 100644
--- a/backend/src/api/categories/categories.controller.ts
+++ b/backend/src/api/categories/categories.controller.ts
@@ -29,7 +29,7 @@ export class CategoriesController {
   async findOne(@Param('id') id: string) {
     return await this.categoriesService.findOne(id);
   }
-  /*
+
   @Patch(':id')
   update(@Param('id') id: string, @Body() updateCategoryDto: UpdateCategoryDto) {
     return this.categoriesService.update(id, updateCategoryDto);
@@ -39,5 +39,4 @@ export class CategoriesController {
   remove(@Param('id') id: string) {
     return this.categoriesService.remove(id);
   }
-*/
 }