We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ce34a5 commit 7ba1804Copy full SHA for 7ba1804
src/common/helper.js
@@ -604,7 +604,7 @@ async function getChallengeTerms (termsIds) {
604
for (let id of termsIds) {
605
// Get the terms details from the API
606
try {
607
- const res = await axios.get(`${config.TERMS_API_URL}/${id}`, { headers: { Authorization: `Bearer ${token}` } })
+ const res = await axios.get(`${config.TERMS_API_URL}/${id}?noauth=true`, { headers: { Authorization: `Bearer ${token}` } })
608
terms.push(_.assign({
609
id: res.data.id,
610
agreeabilityType: res.data.agreeabilityType,
0 commit comments