Skip to content

Commit

Permalink
removed unnecessary backslash from codesamples
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhaintz committed Aug 6, 2024
1 parent c38189c commit 2aba136
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion platform-includes/configuration/ignore-errors/dart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
await SentryFlutter.init(
(options) {
options.dsn = '___PUBLIC_DSN___';
options.ignoreErrors = ["transaction", "^my\-error\-.*\$"];
options.ignoreErrors = ["my-error", "^error-.*\$"];
...
},
appRunner: () => runApp(MyApp()),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
await SentryFlutter.init(
(options) {
options.dsn = '___PUBLIC_DSN___';
options.ignoreTransactions = ["transaction", "^my\-transaction\-.*\$" ];
options.ignoreTransactions = ["my-transaction", "^transaction-.*\$" ];
...
},
appRunner: () => runApp(MyApp()),
Expand Down

0 comments on commit 2aba136

Please sign in to comment.