From f4800c96dc2c7d2741577efaaa2f1ac836dbac86 Mon Sep 17 00:00:00 2001 From: "daivid.alves" Date: Tue, 13 Jan 2026 12:28:36 -0300 Subject: [PATCH] Auto-deploy: 2026-01-13 12:28:36 | 2 arquivo(s) alterado(s) --- src/App.jsx | 4 +++- src/features/prafrot/components/ExcelTable.jsx | 2 +- src/features/prafrot/layout/PrafrotLayout.jsx | 13 +++++++++++-- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 6e534bb..c7edcd7 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -21,7 +21,9 @@ const PrafrotRoutes = lazy(() => import('@/features/prafrot/routes').then(m => ( const PrafrotLogin = lazy(() => import('@/features/prafrot/views/LoginView')); const TableDebug = lazy(() => import('@/features/prafrot/views/TableDebug')); const PlaygroundView = lazy(() => import('@/features/dev-tools/views/PlaygroundView')); -const { WorkspaceLayout, LoginView, WorkspaceGuard } = lazy(() => import('@/features/workspace')); +const WorkspaceLayout = lazy(() => import('@/features/workspace').then(m => ({ default: m.WorkspaceLayout }))); +const LoginView = lazy(() => import('@/features/workspace').then(m => ({ default: m.LoginView }))); +const WorkspaceGuard = lazy(() => import('@/features/workspace').then(m => ({ default: m.WorkspaceGuard }))); // Loading component const PageLoader = () => ( diff --git a/src/features/prafrot/components/ExcelTable.jsx b/src/features/prafrot/components/ExcelTable.jsx index f059e90..de9d89e 100644 --- a/src/features/prafrot/components/ExcelTable.jsx +++ b/src/features/prafrot/components/ExcelTable.jsx @@ -125,7 +125,7 @@ const ExcelTable = ({ return ( <> -
+
{/* Loading Overlay */} {loading && ( diff --git a/src/features/prafrot/layout/PrafrotLayout.jsx b/src/features/prafrot/layout/PrafrotLayout.jsx index d1a54e2..97ce7af 100644 --- a/src/features/prafrot/layout/PrafrotLayout.jsx +++ b/src/features/prafrot/layout/PrafrotLayout.jsx @@ -61,8 +61,17 @@ export const PrafrotLayout = () => { {/* Content */} -
- +
+
+
+ +
+