Skip to content

Commit 413e065

Browse files
authored
fix(feedback): Dont escape url template (#14324)
Followup from #14310 (comment)
1 parent 9585db7 commit 413e065

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

develop-docs/application-architecture/feedback-architecture.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ filters, **skipping emails if:**
263263
This feature is available if you enable the following feature flags.
264264

265265
- `organizations:user-feedback-ingest`
266-
- `organizations:user-feedback-ui`
266+
- `organizations:user-feedback-ui` (v25.6.2 and prior)
267267
- `organizations:user-feedback-replay-clip` (from v24.7.1 through to v25.3.0)
268268

269269
Auto-registered flags for issue platform, for versions \<= v24.10.0 only:

docs/platforms/javascript/common/user-feedback/configuration/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Sentry.init({
246246
});
247247
```
248248

249-
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}`.
249+
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}`.
250250

251251
*Note:* In v9 and below of the SDK, the signature of `onSubmitSuccess` was `(data: FeedbackFormData) => {}`.
252252

0 commit comments

Comments
 (0)