This commit is contained in:
AAGaming
2024-06-27 00:21:32 -04:00
parent 2f8b5df007
commit 0cfb41755a
6 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export function getLikelyErrorSourceFromValveError(error: ValveError): ErrorSour
}
export function getLikelyErrorSourceFromValveReactError(error: ValveReactErrorInfo): ErrorSource {
return getLikelyErrorSource(error?.error?.stack + "\n" + error.info.componentStack);
return getLikelyErrorSource(error?.error?.stack + '\n' + error.info.componentStack);
}
export function getLikelyErrorSource(error?: string): ErrorSource {