Skip to content
Merged
Changes from 3 commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ const userFeedback: SendFeedbackParams = {
name: "John Doe",
email: "[email protected]",
message: "Hello World!",
associatedEventId: eventId,// Optional
associatedEventId: eventId, // Optional
};

Sentry.captureUserFeedback(userFeedback);
Sentry.captureFeedback(userFeedback);
```

You can also attach further data to the feedback event by passing a hint as a second argument. This is similar to other `capture` methods:
Expand Down