use better endpoint to view subbmit process

This commit is contained in:
Mateusz Tylka 2023-01-05 23:12:59 +01:00
parent e8f908b833
commit a5841eb830

View File

@ -24,7 +24,7 @@ const challengeSubmission = (challengeName, repoUrl, repoBranch, description, se
}).then((resp) => resp.json()) }).then((resp) => resp.json())
.then((data) => { .then((data) => {
setLoading(true); setLoading(true);
window.location.replace(`https://gonito.net/view-progress/${data}#form`); window.location.replace(`https://gonito.net/open-view-progress/${data}#form`);
}); });
}; };