@@ -136,7 +139,7 @@ const taitanRenderer = (location, lang) =>
({ title, body, sidebar, nav, anchors, error }) => {
// This useEffect solution is a workaround to prevent hydration errors when loading the Error page.
- // useEffect does not run when doing serverside rendering, so this prevents the error page from
+ // useEffect does not run when doing serverside rendering, so this prevents the error page from
// rendering serverside. Rendering it serverside caused the page to crash when rendering clientside,
// since the client always tries to render the normal page first, and getting angry that it does not
// match what the server produced. (This is due to error being undefined first due to latecncy).