Skip to content

Commit 7611fb1

Browse files
committed
Remove error reporting
Avoid sending fork-specific errors to the upstream reporting system
1 parent 8adbb21 commit 7611fb1

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

app/src/ui/main-process-proxy.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,14 +357,12 @@ export function reportUncaughtException(error: Error) {
357357
_reportUncaughtException(getIpcFriendlyError(error))
358358
}
359359

360-
const _sendErrorReport = sendProxy('send-error-report', 3)
361-
362360
export function sendErrorReport(
363361
error: Error,
364362
extra: Record<string, string>,
365363
nonFatal: boolean
366364
) {
367-
_sendErrorReport(getIpcFriendlyError(error), extra, nonFatal)
365+
console.error('ERROR', error, extra, nonFatal)
368366
}
369367

370368
export const updateAccounts = sendProxy('update-accounts', 1)

0 commit comments

Comments
 (0)