We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7ddef9 + 9360ddc commit 22af368Copy full SHA for 22af368
src/features/sentry.js
@@ -21,7 +21,7 @@ Sentry.init({
21
// A tracesSampleRate of 0.05 and profilesSampleRate of 0.05 results in 2.5% of
22
// transactions being profiled (0.05*0.05=0.0025)
23
24
- // Capture Replay for 0.5% of all sessions,
+ // Capture Replay for 0.05% of all sessions,
25
replaysSessionSampleRate: 0.005,
26
// ...plus for 100% of sessions with an error
27
replaysOnErrorSampleRate: 1.0,
webpack.config.js
@@ -80,15 +80,9 @@ var options = {
80
path.join(__dirname, 'src', 'ui', 'app', 'tabs', 'trezorTx.jsx')
81
),
82
background: path.join(__dirname, 'src', 'pages', 'Background', 'index.js'),
83
- contentScript: withMaybeSentry(
84
- path.join(__dirname, 'src', 'pages', 'Content', 'index.js')
85
- ),
86
- injected: withMaybeSentry(
87
- path.join(__dirname, 'src', 'pages', 'Content', 'injected.js')
88
89
- trezorContentScript: withMaybeSentry(
90
- path.join(__dirname, 'src', 'pages', 'Content', 'trezorContentScript.js')
91
+ contentScript: path.join(__dirname, 'src', 'pages', 'Content', 'index.js'),
+ injected: path.join(__dirname, 'src', 'pages', 'Content', 'injected.js'),
+ trezorContentScript: path.join(__dirname, 'src', 'pages', 'Content', 'trezorContentScript.js'),
92
},
93
chromeExtensionBoilerplate: {
94
notHotReload: ['contentScript', 'devtools', 'injected'],
0 commit comments