summaryrefslogtreecommitdiff
path: root/src/utils/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/index.ts')
-rw-r--r--src/utils/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/index.ts b/src/utils/index.ts
index d969cb6..d90787c 100644
--- a/src/utils/index.ts
+++ b/src/utils/index.ts
@@ -23,7 +23,7 @@ export const safeAsyncOperation = async <T,>(
try {
return await operation();
} catch (e) {
- logError(`${errorContext}: ${String(e)}`);
+ void logError(`${errorContext}: ${String(e)}`);
console.error(e);
return undefined;
}