Currently, I've created a table component that contains a list of items. I've implemented hotkeys using the react-hotkeys package to allow users to navigate through the list using the 'arrow up' and 'arrow down' keys. The issue I'm facing is that whenever I use the hotkeys, the screen also scrolls due to the presence of a scroll bar on the right side. I'm looking for a solution that will allow me to navigate through items with the hotkeys without triggering the scrollbar unless the item is located outside of the current screen. Any suggestions on how to achieve this?