Skip to content

Commit

Permalink
Ensure we show the exact boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
SamChou19815 committed Jun 13, 2020
1 parent 2cf22e8 commit ca8efe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docusaurus-plugin-debug/src/theme/Debug/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function Debug() {
{routes.map(({path, exact}) => (
<li key={path}>
<div>Route: {path}</div>
<div>Is exact: {Boolean(exact)}</div>
<div>Is exact: {String(Boolean(exact))}</div>
</li>
))}
</ul>
Expand Down

0 comments on commit ca8efe1

Please sign in to comment.