From f241b0231b7090c1c324c219a6cc12443961ce22 Mon Sep 17 00:00:00 2001 From: Sergiy Dybskiy Date: Sat, 10 Jan 2026 20:17:00 -0500 Subject: [PATCH] fix(feedback): Include full URL with query parameters in feedback captureFeedback doesn't auto-capture the URL like sendFeedback does. This was causing feedback to show truncated URLs without query params. For example, feedback from /platform-redirect/?next=/configuration/environments/ was showing as just /platform-redirect/ Co-Authored-By: Claude Opus 4.5 --- src/components/docFeedback/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/docFeedback/index.tsx b/src/components/docFeedback/index.tsx index b0dd8704f29af6..911fc896cc00a6 100644 --- a/src/components/docFeedback/index.tsx +++ b/src/components/docFeedback/index.tsx @@ -41,6 +41,7 @@ export function DocFeedback({pathname}: Props) { Sentry.captureFeedback( { message: comments, + url: window.location.href, }, {captureContext: {tags: {page: pathname, type: feedbackType}}} );