From a5841eb8306a532f7039eaa12123fbe42bfcd6ce Mon Sep 17 00:00:00 2001 From: Mateusz Tylka Date: Thu, 5 Jan 2023 23:12:59 +0100 Subject: [PATCH] use better endpoint to view subbmit process --- src/api/challengeSubmissionPost.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/challengeSubmissionPost.js b/src/api/challengeSubmissionPost.js index ca09d94..517e55e 100644 --- a/src/api/challengeSubmissionPost.js +++ b/src/api/challengeSubmissionPost.js @@ -24,7 +24,7 @@ const challengeSubmission = (challengeName, repoUrl, repoBranch, description, se }).then((resp) => resp.json()) .then((data) => { setLoading(true); - window.location.replace(`https://gonito.net/view-progress/${data}#form`); + window.location.replace(`https://gonito.net/open-view-progress/${data}#form`); }); };