Skip to content

Commit bfb0676

Browse files
chore(internal): Use new DSN after leaked token (#3495)
1 parent 7af4f0b commit bfb0676

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

samples/react-native/src/dsn.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as Sentry from '@sentry/react-native';
22

33
export const SENTRY_INTERNAL_DSN =
4-
'https://d870ad989e7046a8b9715a57f59b23b5@o447951.ingest.sentry.io/5428561';
4+
'https://1df17bd4e543fdb31351dee1768bb679@o447951.ingest.sentry.io/5428561';
55

66
export const getCurrentDsn = () => {
77
return Sentry.getCurrentHub().getClient()?.getOptions().dsn;

test/perf/TestAppSentry/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import {
2929
import * as Sentry from '@sentry/react-native';
3030

3131
Sentry.init({
32-
dsn: 'https://d870ad989e7046a8b9715a57f59b23b5@o447951.ingest.sentry.io/5428561',
32+
dsn: 'https://1df17bd4e543fdb31351dee1768bb679@o447951.ingest.sentry.io/5428561',
3333
});
3434

3535
const Section = ({children, title}): Node => {

test/react-native/rn.patch.app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { EndToEndTestsScreen } from 'sentry-react-native-e2e-tests';
2525
Sentry.init({
2626
release: '${SENTRY_RELEASE}',
2727
dist: '${SENTRY_DIST}',
28-
dsn: 'https://d870ad989e7046a8b9715a57f59b23b5@o447951.ingest.sentry.io/5428561',
28+
dsn: 'https://1df17bd4e543fdb31351dee1768bb679@o447951.ingest.sentry.io/5428561',
2929
});
3030
`;
3131
const e2eComponentPatch = '<EndToEndTestsScreen />';

0 commit comments

Comments
 (0)