Bluesky app fork with some witchin' additions 💫

Disable default stack traces that are causing issues (#8487)

authored by

Eric Bailey and committed by
GitHub
d2de074d 45f0f7ee

+8
+8
src/logger/sentry/setup/index.ts
··· 38 38 */ 39 39 `Network request failed`, 40 40 ], 41 + /** 42 + * Does not affect traces of error events or other logs, just disables 43 + * automatically attaching stack traces to events. This helps us group events 44 + * and prevents explosions of separate issues. 45 + * 46 + * @see https://docs.sentry.io/platforms/react-native/configuration/options/#attach-stacktrace 47 + */ 48 + attachStacktrace: false, 41 49 })