Revert "UI Console Errors and Git Errors Fixes, + recommendations"

This reverts commit 1e9cd5eb13.
This commit is contained in:
Extremesecrecy
2025-07-24 09:40:20 -07:00
parent 788bfad6ab
commit b82958d8e6
11 changed files with 49 additions and 79 deletions
+6 -3
View File
@@ -54,7 +54,9 @@ interface ZoomedDialProps extends WithStyles<typeof styles> {
onSetValue(value: number): void
}
type ZoomedDialState = Record<string, never>;
interface ZoomedDialState {
}
const ZoomedDial = withStyles(
@@ -157,7 +159,7 @@ const ZoomedDial = withStyles(
}
onTouchStart() {
onTouchStart(e: TouchEvent<SVGSVGElement>) {
//must be defined to get onTouchMove
}
onTouchMove(e: TouchEvent<SVGSVGElement>) {
@@ -375,7 +377,8 @@ const ZoomedDial = withStyles(
}
onBodyPointerDownCapture(e: PointerEvent): any {
onBodyPointerDownCapture(e_: any): any {
let e = e_ as PointerEvent;
if (this.isExtraTouch(e)) {
this.captureElement!.setPointerCapture(e.pointerId);
this.capturedPointers.push(e.pointerId);