From 136b300f1f30978017d757de7bb967211a03b52a Mon Sep 17 00:00:00 2001 From: Alex Yau Date: Wed, 22 Nov 2023 18:23:04 +1100 Subject: [PATCH] Remove console logging --- src/web/utils/ErrorView.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/web/utils/ErrorView.tsx b/src/web/utils/ErrorView.tsx index ae09aef67..0592c41a1 100644 --- a/src/web/utils/ErrorView.tsx +++ b/src/web/utils/ErrorView.tsx @@ -1,7 +1,5 @@ const analyticsIdentifier = (errorId?: string, errorHash?: string) => { if (!errorHash && !errorId) return 'No error identifier'; - console.log('errorHash', errorHash); - console.log('errorId', errorId); return errorHash ? `error hash: ${errorHash}` // From backend : `error ID: ${errorId}`; // Generated by frontend to make it possible to triage user reported errors.