From 02d57b6564b8eb932df58e9e490985c21e310f4c Mon Sep 17 00:00:00 2001
From: Baptiste Grob <60621355+baptiste-grob@users.noreply.github.com>
Date: Tue, 3 Nov 2020 20:13:13 +0100
Subject: [PATCH] fix: bugsnag info wording
---
.../javascripts/directives/views/accountMenu.ts | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/app/assets/javascripts/directives/views/accountMenu.ts b/app/assets/javascripts/directives/views/accountMenu.ts
index eeb7d3685..2f38002cf 100644
--- a/app/assets/javascripts/directives/views/accountMenu.ts
+++ b/app/assets/javascripts/directives/views/accountMenu.ts
@@ -594,12 +594,17 @@ class AccountMenuCtrl extends PureViewCtrl<{}, AccountMenuState> {
alertDialog({
title: 'Data sent during automatic error reporting',
text: `
- We use Bugsnag to automatically
- report errors that occur while the app is running.
+ We use Bugsnag
+ to automatically report errors that occur while the app is running. See
- See this article, paragraph 'Browser' under 'Sending diagnostic data',
+ this article, paragraph 'Browser' under 'Sending diagnostic data',
- to know what data is automatically captured.
+ to see what data is included in error reports.
+
+ Error reports never include IP addresses and are fully
+ anonymized. We use error reports to be alerted when something in our
+ code is causing unexpected errors and crashes in your application
+ experience.
`
});
}