diff --git a/develop-docs/application-architecture/feedback-architecture.mdx b/develop-docs/application-architecture/feedback-architecture.mdx index 438f3870764afe..bcbaf73ca0cce1 100644 --- a/develop-docs/application-architecture/feedback-architecture.mdx +++ b/develop-docs/application-architecture/feedback-architecture.mdx @@ -263,7 +263,7 @@ filters, **skipping emails if:** This feature is available if you enable the following feature flags. - `organizations:user-feedback-ingest` -- `organizations:user-feedback-ui` +- `organizations:user-feedback-ui` (v25.6.2 and prior) - `organizations:user-feedback-replay-clip` (from v24.7.1 through to v25.3.0) Auto-registered flags for issue platform, for versions \<= v24.10.0 only: diff --git a/docs/platforms/javascript/common/user-feedback/configuration/index.mdx b/docs/platforms/javascript/common/user-feedback/configuration/index.mdx index 1abbbdb60adbf6..eea569960b6bfa 100644 --- a/docs/platforms/javascript/common/user-feedback/configuration/index.mdx +++ b/docs/platforms/javascript/common/user-feedback/configuration/index.mdx @@ -246,7 +246,7 @@ Sentry.init({ }); ``` -You can link directly to a saved feedback item by implementing the `onSubmitSuccess` callback. The URL you need to construct is `https://\$\{orgSlug}.sentry.io/issues/feedback/?projectSlug=\$\{projectSlug}&eventId=\$\{eventId}`. +You can link directly to a saved feedback item by implementing the `onSubmitSuccess` callback. The URL you need to construct is `https://${orgSlug}.sentry.io/issues/feedback/?projectSlug=${projectSlug}&eventId=${eventId}`. *Note:* In v9 and below of the SDK, the signature of `onSubmitSuccess` was `(data: FeedbackFormData) => {}`.