Skip to content

Commit

Permalink
update url for share opendevin visualization (All-Hands-AI#3009)
Browse files Browse the repository at this point in the history
  • Loading branch information
xingyaoww authored Jul 19, 2024
1 parent ff6ddc8 commit 1761b88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/modals/feedback/FeedbackModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Feedback, sendFeedback } from "#/services/feedbackService";
import FeedbackForm from "./FeedbackForm";
import toast from "#/utils/toast";

const VIEWER_PAGE = "https://od-feedback.vercel.app/show";
const VIEWER_PAGE = "https://www.all-hands.dev/share-opendevin";

interface FeedbackModalProps {
feedback: Feedback;
Expand All @@ -33,7 +33,7 @@ function FeedbackModal({
.then((response) => {
if (response.statusCode === 200) {
const { message, feedback_id: feedbackId, password } = response.body;
const toastMessage = `${message}\nFeedback link: ${VIEWER_PAGE}?feedback_id=${feedbackId}\nPassword: ${password}`;
const toastMessage = `${message}\nFeedback link: ${VIEWER_PAGE}?share_id=${feedbackId}\nPassword: ${password}`;
toast.info(toastMessage);
} else {
toast.error(
Expand Down

0 comments on commit 1761b88

Please sign in to comment.