Init Chat Folders Settings UI

This commit is contained in:
Jamie Kyle 2025-06-25 10:17:33 -07:00 committed by GitHub
commit 157496f822
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 1829 additions and 13 deletions

View file

@ -52,10 +52,9 @@ export function ListView({
const style: React.CSSProperties = useMemo(() => {
return {
// See `<Timeline>` for an explanation of this `any` cast.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
overflowY: scrollable ? ('overlay' as any) : 'hidden',
overflowY: scrollable ? 'auto' : 'hidden',
direction: 'inherit',
scrollbarGutter: 'stable',
};
}, [scrollable]);