freeCodeCamp / classroom

BSD 3-Clause "New" or "Revised" License
145 stars 119 forks source link

fix page redirects across all pages #515

Open victoriavo256 opened 7 months ago

victoriavo256 commented 7 months ago

Checklist:

Co-authored by: Dylan Uribe dyluri007@gmail.com Co-authored by: Ann Pan ypan413@gatech.edu

Thank you to SenthilKumar Ilango sen1517@gmail.com for mentoring us.

Resolved Issue #497 and refactored all page redirects. Redirects were previously handled with ctx.writeHead, but we replaced it with our method called redirectUser which uses the recommended page redirect instruction provided by next.js. (https://nextjs.org/docs/pages/api-reference/functions/get-server-side-props#redirect) Tested changes locally.

Closes #497