Skip to content

Commit

Permalink
Merge pull request #60 from zaanposni/release/1.16.1
Browse files Browse the repository at this point in the history
dont mask content in sentry session replay
  • Loading branch information
zaanposni authored Nov 20, 2024
2 parents 6afdccd + 5702928 commit 8084a7c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/psaggregator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "psaggregator",
"version": "1.16.0",
"version": "1.16.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
Expand Down
8 changes: 7 additions & 1 deletion src/psaggregator/src/hooks.client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ if (SENTRY_DSN) {
replaysSessionSampleRate: import.meta.env.MODE === "development" ? 0 : 0.1,
replaysOnErrorSampleRate: 1.0,

integrations: [replayIntegration()]
integrations: [
replayIntegration({
maskAllInputs: false,
maskAllText: false,
blockAllMedia: false
})
]
});
}

Expand Down

0 comments on commit 8084a7c

Please sign in to comment.