fix(ui/ScrollableArea): overflow indicator not working

new-app-install-flow
Morgan Vernay 2023-10-20 11:24:09 +03:00
parent a4d20e7d65
commit 905bc23f87
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ const ScrollableArea = ({ children, className }: PropsWithChildren<{ className?:
className // Pass in your max-w / max-h
)}>
{children}
{isOverflowingY && <div style={overflowIndicatorStyles} data-testid="overflow-indicator" />}
{isOverflowingY && <div data-testid="overflow-indicator" />}
</div>
);
};