Skip to content
Advertisement

React Router Dom : Warning: Received `true` for a non-boolean attribute `exact`

I applied all possibility but this console warning not gone.

Warning: Received true for a non-boolean attribute exact.if you want to write it to the DOM, pass a string instead: exact=”true” or exact={value.toString()}.

JavaScript

I also applied this possibility but not solved my problem:

JavaScript

Full Code:

Urls.js:

JavaScript

Home.js:

JavaScript

Register.js:

JavaScript

Screenshot :

No any console error

enter image description here

but when click on register then below console error occured:

enter image description here

Advertisement

Answer

Looks like the error is coming from here in Register.js

JavaScript

more specifically, <Link exact to="/login">Login</Link> You only use exact with the <NavLink> component so that you can apply an active class to it if you’re currently on that route. If you have this link as just <Link to "/login">Login</Login> it should be good 🙂 Looks like you already got the answer in the comments, but figured I’d add it here.

Advertisement