This repository was archived by the owner on Sep 13, 2026. It is now read-only.
v0.4.9
Fixed
- Dashboard: VisionCallCard description scrollbar thumb never rendered:
theScrollAreawrapper hardcoded its Viewport tosize-full
(height: 100%), which does not resolve against a Root declaring only
max-height(no definite height). The Viewport grew with content and
never overflowed, so the scrollbar thumb was absent for long vision
descriptions. Added an optionalviewportClassNameprop to the
ScrollAreawrapper (merged viacn/twMergeafter the default
size-full);VisionCallCardnow passesviewportClassName="max-h-40"
so the Viewport itself is bounded to 160px and overflow triggers the
thumb. Short descriptions still size to content (Root has no forced
height). The 11 otherScrollAreacallers are unchanged.