diff --git a/backend/src/controllers/QueueController.ts b/backend/src/controllers/QueueController.ts index 2bed909..e074f4a 100644 --- a/backend/src/controllers/QueueController.ts +++ b/backend/src/controllers/QueueController.ts @@ -9,9 +9,7 @@ import UpdateQueueService from "../services/QueueService/UpdateQueueService"; export const index = async (req: Request, res: Response): Promise => { - const queues = await ListQueuesService(); - - + const queues = await ListQueuesService(); return res.status(200).json(queues); };