From ba0d1a9c768480af897acc349de11bdd0f71143d Mon Sep 17 00:00:00 2001 From: Graham Neubig Date: Thu, 22 Aug 2024 11:40:21 -0400 Subject: [PATCH] Update FeedbackModal.tsx (#3538) --- frontend/src/components/modals/feedback/FeedbackModal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/modals/feedback/FeedbackModal.tsx b/frontend/src/components/modals/feedback/FeedbackModal.tsx index e4f7c39d11..adec7722aa 100644 --- a/frontend/src/components/modals/feedback/FeedbackModal.tsx +++ b/frontend/src/components/modals/feedback/FeedbackModal.tsx @@ -16,7 +16,7 @@ const isEmailValid = (email: string) => { return emailRegex.test(email); }; -const VIEWER_PAGE = "https://www.all-hands.dev/share-openhands"; +const VIEWER_PAGE = "https://www.all-hands.dev/share"; const FEEDBACK_VERSION = "1.0"; interface FeedbackModalProps { @@ -103,7 +103,7 @@ function FeedbackModal({ localStorage.setItem("feedback-email", email); // store email in local storage if (response.statusCode === 200) { const { message, feedback_id: feedbackId, password } = response.body; - const link = `${VIEWER_PAGE}?share_id=${feedbackId}&password=${password}`; + const link = `${VIEWER_PAGE}?share_id=${feedbackId}`; shareFeedbackToast(message, link, password); } else { toast.error(