From 0527f13bf38cc3e4be48df2b9693d20c2ca8411e Mon Sep 17 00:00:00 2001 From: JuruSysadmin Date: Wed, 7 Jan 2026 16:44:38 -0300 Subject: [PATCH] feat: implement a new page for managing delivery days and capacities with an interactive calendar and update forms. --- src/app/dias-rota/pagina.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/dias-rota/pagina.tsx b/src/app/dias-rota/pagina.tsx index ab8de42..9ab58f6 100644 --- a/src/app/dias-rota/pagina.tsx +++ b/src/app/dias-rota/pagina.tsx @@ -82,7 +82,7 @@ const Pagina = ({ bladinhoData }: PaginaProps) => { return bladinhoData.map((item) => { const dateDelivery = new Date(item.dateDelivery); const additionalInfo = [ - `Capacidade: ${item.deliverySize}`, + `Capacidades: ${item.deliverySize}`, `Peso Venda: ${item.saleWeight}`, `Disponível: ${item.avaliableDelivery}`, ].join('\n');