aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui')
-rw-r--r--src/components/ui/Link.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/ui/Link.js b/src/components/ui/Link.js
index aabb9e0a6..b09ef026e 100644
--- a/src/components/ui/Link.js
+++ b/src/components/ui/Link.js
@@ -35,7 +35,9 @@ export default class Link extends Component {
35 filter = `${to}`; 35 filter = `${to}`;
36 } 36 }
37 37
38 const match = matchRoute(filter, router.location.pathname + router.location.search); 38 const match = matchRoute(filter, router.location.pathname);
39
40 console.log(filter, strictFilter, router.location.pathname, router.location.search, match)
39 41
40 const linkClasses = classnames({ 42 const linkClasses = classnames({
41 [`${className}`]: true, 43 [`${className}`]: true,