Skip to content

Commit 64b331b

Browse files
Fix hard coded DSN in the dotnet docs (#13681)
1 parent 719df4b commit 64b331b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/platforms/dotnet/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ To capture all errors, even the one during the startup of your application, you
8484
```csharp
8585
SentrySdk.Init(options =>
8686
{
87-
options.Dsn = "https://eb18e953812b41c3aeb042e666fd3b5c@o447951.ingest.us.sentry.io/5428537";
87+
options.Dsn = "___PUBLIC_DSN___";
8888
options.Debug = true;
8989
// Adds request URL and headers, IP and name for users, etc.
9090
options.SendDefaultPii = true;

0 commit comments

Comments
 (0)