From c227b0d06a1a4f0de51f7aae31903d9ef6bdd489 Mon Sep 17 00:00:00 2001 From: Priyanshu Bartwal Date: Tue, 12 May 2026 00:12:55 +0530 Subject: [PATCH] Fix(UI): Side panel having two scrollbars (#20456) Fixes: #20417 Screenshot: image --- .../src/modules/side-panel/components/SidePanelList.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/packages/twenty-front/src/modules/side-panel/components/SidePanelList.tsx b/packages/twenty-front/src/modules/side-panel/components/SidePanelList.tsx index c418e7135d..18186a633a 100644 --- a/packages/twenty-front/src/modules/side-panel/components/SidePanelList.tsx +++ b/packages/twenty-front/src/modules/side-panel/components/SidePanelList.tsx @@ -35,10 +35,6 @@ const StyledInnerList = styled.div` } `; -const StyledSidePanelList = styled.div` - overflow-y: hidden; -`; - const StyledEmpty = styled.div` align-items: center; color: ${themeCssVariables.font.color.light}; @@ -61,7 +57,7 @@ export const SidePanelList = ({ ); return ( - + <> @@ -80,6 +76,6 @@ export const SidePanelList = ({ - + ); };