Skip to content

Commit

Permalink
fix(ai-search): sidebar should not scroll sideways
Browse files Browse the repository at this point in the history
  • Loading branch information
Shoaibdev7 committed Aug 22, 2024
1 parent eeac342 commit 98f321f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/App/SideBar/AiView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ const Wrapper = styled(Flex)(({ theme }) => ({
},
}))

const ScrollWrapper = styled(Flex)(() => ({
overflow: 'auto',
const ScrollWrapper = styled(Flex)({
overflowY: 'auto',
flex: 1,
width: '100%',
}))
})

0 comments on commit 98f321f

Please sign in to comment.