middleware redirects like this `return NextResponse.redirect(new URL("/auth", request.url));` are ch

middleware redirects like this
return NextResponse.redirect(new URL("/auth", request.url));
are changing the view but not the url in the url bar
I'm forced to use router.push instead of router.refresh on auth success e.g
Was this page helpful?