All Questions
3
questions
1
vote
0
answers
1k
views
How push history router without change URL
For example I have a form with three steps. I want that each step are in the history router but without changing de URL
Is it possible do it with Next Route or Next Link?
1
vote
0
answers
992
views
how to keep url query string values even on page refresh
I am using useRouter and Link, while navigating through my webapp. I attach query string to the links so that i can use the passed data of the query, in the page i am redirecting the user to. which ...
0
votes
1
answer
79
views
Reactjs Reusable component not updated when one of dependency library used at useEffect() change
I've a nextjs custom component that adds the locale before the pathname of the page when clicked and adds custom style for the active link..
here is the component
"use client";
import { ...