diff --git a/src/components/App/SideBar/AiView/index.tsx b/src/components/App/SideBar/AiView/index.tsx index 33bcf9bfa..f94a4bf56 100644 --- a/src/components/App/SideBar/AiView/index.tsx +++ b/src/components/App/SideBar/AiView/index.tsx @@ -65,8 +65,9 @@ const Wrapper = styled(Flex)(({ theme }) => ({ }, })) -const ScrollWrapper = styled(Flex)(() => ({ - overflow: 'auto', - flex: 1, - width: '100%', -})) +const ScrollWrapper = styled(Flex)` + overflow-y: auto; + overflow-x: hidden; + flex: 1; + width: 100%; +`