summaryrefslogtreecommitdiff
path: root/frontend/src/utils
diff options
context:
space:
mode:
authorAAGaming <aagaming@riseup.net>2024-06-27 00:21:32 -0400
committerAAGaming <aagaming@riseup.net>2024-06-27 00:21:32 -0400
commit0cfb41755a3cf5bc39cd65e45e02418c245fa793 (patch)
tree9bab88d926fbcf218b10794161e4c4c411e691a8 /frontend/src/utils
parent2f8b5df0077bae996c1e9c5fa571ebf538260597 (diff)
downloaddecky-loader-0cfb41755a3cf5bc39cd65e45e02418c245fa793.tar.gz
decky-loader-0cfb41755a3cf5bc39cd65e45e02418c245fa793.zip
lint
Diffstat (limited to 'frontend/src/utils')
-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 35122ebb..a99fd0b1 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 + "\n" + error.info.componentStack);
+ return getLikelyErrorSource(error?.error?.stack + '\n' + error.info.componentStack);
}
export function getLikelyErrorSource(error?: string): ErrorSource {