Skip to content

Commit 53724c5

Browse files
authored
meta(feedback): Fix syntax error in README (#9875)
1 parent e128936 commit 53724c5

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

packages/feedback/README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,15 @@ By default the Feedback integration will attempt to fill in the name/email field
7373

7474
```javascript
7575
Sentry.setUser({
76-
76+
userEmail: '[email protected]',
7777
fullName: 'Jane Doe',
7878
});
7979

80-
8180
new Feedback({
82-
useSentryUser({
83-
email: 'email',
84-
name: 'fullName',
85-
}),
81+
useSentryUser: {
82+
email: 'userEmail',
83+
name: 'fullName',
84+
},
8685
})
8786
```
8887

0 commit comments

Comments
 (0)