From 2a7019c64c8b29e0a10f256df596386ea3c42278 Mon Sep 17 00:00:00 2001 From: chamikaJ Date: Mon, 14 Jul 2025 12:48:13 +0530 Subject: [PATCH] refactor(home-page): simplify layout by removing unnecessary Card component - Removed the Card wrapper around the TasksList for a cleaner layout. - Cleaned up whitespace in the home-page.tsx file for improved readability. --- worklenz-frontend/src/pages/home/home-page.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/worklenz-frontend/src/pages/home/home-page.tsx b/worklenz-frontend/src/pages/home/home-page.tsx index 0c49bda5..fe8cd3ea 100644 --- a/worklenz-frontend/src/pages/home/home-page.tsx +++ b/worklenz-frontend/src/pages/home/home-page.tsx @@ -46,7 +46,7 @@ const HomePage = memo(() => { console.warn('Failed to preload TaskDrawer:', error); } }; - + preloadTaskDrawer(); }, []); @@ -108,9 +108,7 @@ const HomePage = memo(() => { - - - + @@ -118,7 +116,7 @@ const HomePage = memo(() => { - + @@ -134,4 +132,4 @@ const HomePage = memo(() => { HomePage.displayName = 'HomePage'; -export default HomePage; \ No newline at end of file +export default HomePage;