From 799219f62addcbc76b7ccfa37c86994a81f68d65 Mon Sep 17 00:00:00 2001 From: miguel Date: Wed, 4 Jun 2025 11:10:49 -0600 Subject: [PATCH] Remove ordering from findAll method in EdificioService --- src/edificio/edificio.service.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/edificio/edificio.service.ts b/src/edificio/edificio.service.ts index 6ec7571..39b2028 100644 --- a/src/edificio/edificio.service.ts +++ b/src/edificio/edificio.service.ts @@ -11,10 +11,6 @@ export class EdificioService { ) {} async findAll(): Promise { - return this.categoriaRepository.find({ - order: { - profesores: 'ASC', - } - }); + return this.categoriaRepository.find(); } }