What version of React Router are you using?
6.4.0
Steps to Reproduce
Add to your navigation component and visit another page:
<NavLink to="/">Home</NavLink>
Expected Behavior
This code being compiled to
while being on any other route like /about
Actual Behavior
This is compiled to:
<a aria-current="page" class="active" href="/">Home</a>
while being on /about