fix(ui): scrollbar should not be visible

This commit is contained in:
thecodrr
2020-12-24 10:49:04 +05:00
parent 70e9a65f01
commit e364adb080

View File

@@ -52,7 +52,7 @@ function ListContainer(props) {
{({ height, width }) => (
<List
ref={listRef}
height={height}
height={height - 1} // TODO: we have to subtract 1 from total height so scrollbar doesn't appear (not tested widely)
width={width}
itemKey={(index) => {
switch (index) {