When I click “check your code” nothing happens. I have tried on firefox and chrome. Changing my answer doesn’t do anything, though i think it is correct. I dont even get the usual words of affirmation that im on the right track, just nothing happens.
Your solution works from my end. Please try one of the following steps to move forward.
Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.
or - Try the step in incognito or private mode.
or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.
or - Ensure your browser is up-to-date or try a different browser.
I really think its an error on fCC’s end. The code I put in doesn’t matter, so I don’t know why you keep looking for errors. I have tried multiple browsers, computers, and using data instead of wifi. Maybe the lesson could be reset for my account or something. It’s clear there is some kind of unusual error going on.
I assume you were able to make it to this step (step 17) without issue. Are you able to pass any other steps on that project? If you skip ahead to step 18, 19, etc - can you pass those?
Just tried step 18 and no, it has the same problem. I click check your code and nothing happens. However I did move on to the next lesson where you build a forum leaderboard and completed that entire lesson.
The seed of step 17 should fetch the authors and log them to the console. I don’t see them in your console screen shot. Are you seeing them anywhere? Something you could try is disabling the cache - go to the network tab and find and tick the “disable cache” checkbox. Maybe refresh the page and try again?
Kinda seems like it might be just hanging waiting for that fetch - or going really slow. Or just not working.
You could also check the status of that request in the network tab. It will be to that URL: https://cdn.freecodecamp.org/curriculum/news-author-page/authors.json
I was actually wrong about the authors showing up in the console at the start of step 17 - that’s on step 16.
So what seems to be maybe happening here, is that the tests are setting the image src to http://not-a-real-url.nowhere/no-image.jpg - and the test frame tries to request that image - and some browsers handle it differently or something. Mine seems to auto upgrade it to https:
Seems like yours is doing that as well, but I am still able to pass the step - and yours is causing some kind of block or error or something. It could be something beyond the browser itself and something on the network or a VPN - not sure.
Anyway, GPT suggested to set that image data to 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==' - it’s a 1x1 transparent pixel - and said that browsers don’t request images if they use a data source like that. So that could solve the issue.
That’s not something you would do on your end - that’s something we would need to fix.
You could try looking in your browser security settings and finding something like an “HTTPS everywhere” option and disabling it - just to complete those last few steps - then turn it back on. Not sure if that would work - like I said, it could be above the browser.