Skip to content

Commit e986ece

Browse files
committed
Fix <IndexLinkContainer> by explicitly setting exact prop to true
1 parent 2c28b9d commit e986ece

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/IndexLinkContainer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import LinkContainer from './LinkContainer';
77
export default class IndexLinkContainer extends React.Component {
88
render() {
99
return (
10-
<LinkContainer {...this.props} exact />
10+
<LinkContainer {...this.props} exact={true} />
1111
);
1212
}
1313
}

0 commit comments

Comments
 (0)