@jsenv/navi 0.15.9 → 0.15.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17328,7 +17328,7 @@ const RouteLink = ({
17328
17328
  if (routeStatus.exactMatching) {
17329
17329
  isCurrent = true;
17330
17330
  } else if (routeStatus.matching) {
17331
- isCurrent = route.matchesParams(routeParams);
17331
+ isCurrent = routeParams ? route.matchesParams(routeParams) : false;
17332
17332
  } else {
17333
17333
  isCurrent = false;
17334
17334
  }