Skip to content

Commit

Permalink
Removed unused argument to please typescript checking
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkibbler committed Oct 1, 2024
1 parent c6c0dd7 commit 1041336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default class App {
this.mouseMoveStart = { x: e.clientX, y: e.clientY };
this.appContainer.style.cursor = "grabbing";
});
this.appContainer.addEventListener("mouseup", (e) => {
this.appContainer.addEventListener("mouseup", () => {
this.mouseMoveStart = null;
this.lastScrollOffset = { x: this.scrollOffset.x, y: this.scrollOffset.y };
this.renderer.setOffset(this.scrollOffset);
Expand Down

0 comments on commit 1041336

Please sign in to comment.