diff --git a/backend/src/services/QueueService/ListQueuesService.ts b/backend/src/services/QueueService/ListQueuesService.ts index 204d9a1..356a920 100644 --- a/backend/src/services/QueueService/ListQueuesService.ts +++ b/backend/src/services/QueueService/ListQueuesService.ts @@ -1,7 +1,7 @@ import Queue from "../../models/Queue"; const ListQueuesService = async (): Promise => { - const queues = await Queue.findAll({ order: [["name", "ASC"]] }); + const queues = await Queue.findAll({ order: [["id", "ASC"]] }); return queues; };