Next.js Discord

Discord Forum

Client Redirect not working

Answered
Irish Red and White Setter posted this in #help-forum
Open in Discord
Irish Red and White SetterOP
Trying to redirect to a page after an action is successful throws a NEXT_REDIRECT error.
I am using redirect(); from next/navigation
Answered by Asian black bear
This function is only for server-side use. On the client you're supposed to use useRouter().push()
View full answer

2 Replies

Asian black bear
This function is only for server-side use. On the client you're supposed to use useRouter().push()
Answer
Irish Red and White SetterOP
Thank you @Asian black bear