From 46cc8f89d8ec5c7128b48d9410b7d9113e7b9ade Mon Sep 17 00:00:00 2001 From: JuruSysadmin Date: Fri, 16 Jan 2026 00:21:17 -0300 Subject: [PATCH] feat: Add user profile page, dashboard header with profile dropdown, and integrate profile fetching into authentication. --- src/features/orders/components/OrderTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/orders/components/OrderTable.tsx b/src/features/orders/components/OrderTable.tsx index ef18916..63217d2 100644 --- a/src/features/orders/components/OrderTable.tsx +++ b/src/features/orders/components/OrderTable.tsx @@ -72,7 +72,7 @@ export const OrderTable = () => { const tableHeight = calculateTableHeight(rows.length, 10); const mobileTableHeight = calculateTableHeight(rows.length, 5, { - minHeight: 300, + minHeight: 500, rowHeight: 40, });