DEV Community

Discussion on: Implement Protected Routes in NextJS

Collapse
 
adefizzy045 profile image
Adeniji Adefisayo

Thank you for the post. however you might need to check this

if (typeof window === "undefined") {....}

I think it should be if (typeof window !== "undefined") {...}

because you are checking to know if you are on the browser.

Collapse
 
kirasiris profile image
Kevin Uriel Fonseca

Yes, I think that was a mistake by him but overall this post is good and it helped me a lot. I'm sure this post will keep helping a lot of people later on.

Collapse
 
shubhamverma profile image
Shubham Verma

Thank you Kevin! Glad it helped you

Collapse
 
shubhamverma profile image
Shubham Verma

yes, that was a mistake. Thanks for notifying it, I'll fix it