summaryrefslogtreecommitdiff
path: root/frontend/src/utils/errors.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/utils/errors.ts')
-rw-r--r--frontend/src/utils/errors.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/utils/errors.ts b/frontend/src/utils/errors.ts
index 0bf82986..35122ebb 100644
--- a/frontend/src/utils/errors.ts
+++ b/frontend/src/utils/errors.ts
@@ -22,7 +22,7 @@ export function getLikelyErrorSourceFromValveError(error: ValveError): ErrorSour
}
export function getLikelyErrorSourceFromValveReactError(error: ValveReactErrorInfo): ErrorSource {
- return getLikelyErrorSource(error?.error?.stack);
+ return getLikelyErrorSource(error?.error?.stack + "\n" + error.info.componentStack);
}
export function getLikelyErrorSource(error?: string): ErrorSource {