fix(cli): resolve scroll-jacking and enable click-to-focus for shell toolboxes

This commit is contained in:
Keith Guerin
2026-03-01 01:05:28 -08:00
parent 30e2820dc2
commit 9d028db351
7 changed files with 24 additions and 9 deletions
@@ -209,7 +209,7 @@ export const Scrollable: React.FC<ScrollableProps> = ({
width={width ?? maxWidth}
height={height}
flexDirection="column"
overflowY="scroll"
overflowY={hasFocus ? 'scroll' : 'hidden'}
overflowX="hidden"
scrollTop={scrollTop}
flexGrow={flexGrow}