Skip to content

Commit d890846

Browse files
authored
fix: dsn template (#2736)
1 parent 8166dbe commit d890846

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/platforms/dotnet/guides/aws-lambda/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class LambdaEntryPoint : Amazon.Lambda.AspNetCoreServer.APIGatewayProxyFu
3636
// Add Sentry
3737
.UseSentry(o =>
3838
{
39-
o.Dsn = "__PUBLIC_DSN__";
39+
o.Dsn = "___PUBLIC_DSN___";
4040
// Required in Serverless environments
4141
o.FlushOnCompletedRequest = true;
4242
})

src/platforms/react-native/expo.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In your `main.js` or `app.js`:
2020
import * as Sentry from "sentry-expo";
2121

2222
Sentry.init({
23-
dsn: "__PUBLIC_DSN__",
23+
dsn: "___PUBLIC_DSN___",
2424
enableInExpoDevelopment: true,
2525
debug: true,
2626
});

src/wizard/dotnet/awslambda.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class LambdaEntryPoint : Amazon.Lambda.AspNetCoreServer.APIGatewayProxyFu
3838
// Add Sentry
3939
.UseSentry(o =>
4040
{
41-
o.Dsn = "__PUBLIC_DSN__";
41+
o.Dsn = "___PUBLIC_DSN___";
4242
// Required in Serverless environments
4343
o.FlushOnCompletedRequest = true;
4444
})

0 commit comments

Comments
 (0)