Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/includes/set-user/dart.mdx
Co-authored-by: Manoel Aranda Neto <[email protected]>
  • Loading branch information
ueman and marandaneto authored Mar 23, 2021
commit 1cc3a071eb1e5b89135ad7f54ea62e7bd8654cdb
2 changes: 1 addition & 1 deletion src/includes/set-user/dart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
import 'package:sentry/sentry.dart';

Sentry.configureScope(
(scope) => scope.user = SentryUser(id: 1234, email: '[email protected]'),
(scope) => scope.user = SentryUser(id: '1234', email: '[email protected]'),
);
```