diff --git a/src/components/App.tsx b/src/components/App.tsx index e4f355760..d35d43893 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -2108,15 +2108,6 @@ class App extends React.Component { this.setState({ isBindingEnabled: false }); } - if (event.key === KEYS.PAGE_UP || event.key === KEYS.PAGE_DOWN) { - let offsetY = this.state.height / this.state.zoom.value; - if (event.key === KEYS.PAGE_DOWN) { - offsetY = -offsetY; - } - const scrollY = this.state.scrollY + offsetY; - this.setState({ scrollY }); - } - if (isArrowKey(event.key)) { const step = (this.state.gridSize &&