mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-23 22:00:38 -04:00
When the user downloads their solution before proceeding to the next challenge, the solution is downloaded again on Ctrl + Enter. The issue is that once the user has downloaded their solution, the download button is in focus, so pressing Ctrl + Enter will not only dispatch the submit challenge event, it'll also dispatch the click event on the download button which is not what we want. This disables that event. Closes #34967