From dfe1de5279c6a87efaed403a36c99da35239384b Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Wed, 9 Nov 2022 22:12:21 +0000 Subject: [PATCH] feat: tweak metaforecast path in question embed. No idea why this works differently in that particular page. --- src/web/questions/pages/QuestionPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/questions/pages/QuestionPage.tsx b/src/web/questions/pages/QuestionPage.tsx index db37f9c..f832480 100644 --- a/src/web/questions/pages/QuestionPage.tsx +++ b/src/web/questions/pages/QuestionPage.tsx @@ -72,7 +72,7 @@ const Section: React.FC<{ title: string; id?: string }> = ({ const EmbedSection: React.FC<{ question: QuestionWithHistoryFragment }> = ({ question, }) => { - const url = getBasePath() + `/questions/embed/${question.id}`; + const url = /*getBasePath() */ + `https://metaforecast.org/questions/embed/${question.id}`; return (