You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/feedback/README.md
+26-6Lines changed: 26 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,11 @@
6
6
7
7
# Sentry Integration for Feedback
8
8
9
-
This SDK is **considered experimental and in an alpha state**. It may experience breaking changes, and may be discontinued at any time. Please reach out on
9
+
This SDK is **considered experimental and in a beta state**. It may experience breaking changes, and may be discontinued at any time. Please reach out on
10
10
[GitHub](https://github.com/getsentry/sentry-javascript/issues/new/choose) if you have any feedback/concerns.
11
11
12
+
To view Feedback in Sentry, your [Sentry organization must be an early adopter](https://docs.sentry.io/product/accounts/early-adopter-features/).
13
+
12
14
## Pre-requisites
13
15
14
16
`@sentry-internal/feedback` currently can only be used by browsers with [Shadow DOM](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_shadow_DOM) support.
@@ -210,7 +212,7 @@ import {BrowserClient, getCurrentHub} from '@sentry/react';
// Don't render custom feedback button if Feedback integration not installed
@@ -228,22 +230,40 @@ function MyFeedbackButton() {
228
230
229
231
### Bring Your Own Widget
230
232
231
-
You can also bring your own widget and UI and simply pass a feedback object to the `sendFeedback()` function.
233
+
You can also bring your own widget and UI and simply pass a feedback object to the `sendFeedback()` function. The `sendFeedback` function accepts two parameters:
234
+
* a feedback object with a required `message` property, and additionally, optional `name` and `email` properties
0 commit comments