summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAAGaming <aagaming@riseup.net>2024-06-14 20:34:08 -0400
committerAAGaming <aagaming@riseup.net>2024-06-14 20:34:08 -0400
commit983fcf3014418074cff502082508fe7e7e0c6e07 (patch)
tree14141cfe6c1a2276c719cf4971d0a1c7f68b5630
parent61ad88db77ddda56d956ee9bd522e2fccb253650 (diff)
downloaddecky-loader-983fcf3014418074cff502082508fe7e7e0c6e07.tar.gz
decky-loader-983fcf3014418074cff502082508fe7e7e0c6e07.zip
RUN LINTER AGAINNNNNNN
-rw-r--r--frontend/src/errorboundary-hook.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/frontend/src/errorboundary-hook.tsx b/frontend/src/errorboundary-hook.tsx
index 535c6135..4fb9b4e8 100644
--- a/frontend/src/errorboundary-hook.tsx
+++ b/frontend/src/errorboundary-hook.tsx
@@ -49,7 +49,12 @@ class ErrorBoundaryHook extends Logger {
const react15069WorkaroundRegex = / at .+\.componentDidCatch\..+\.callback /;
this.errorCheckPatch = replacePatch(Object.getPrototypeOf(errorReportingStore), 'BIsBlacklisted', (args: any[]) => {
const [errorSource, wasPlugin, shouldReport] = getLikelyErrorSourceFromValveError(args[0]);
- this.debug('Caught an error', args, { errorSource, wasPlugin, shouldReport, skipAllReporting: this.doNotReportErrors });
+ this.debug('Caught an error', args, {
+ errorSource,
+ wasPlugin,
+ shouldReport,
+ skipAllReporting: this.doNotReportErrors,
+ });
// react#15069 workaround. this took 2 hours to figure out.
if (
args[0]?.message?.[3]?.[0] &&