@tanstack/react-router 0.0.1-beta.240 → 0.0.1-beta.241

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.
@@ -986,7 +986,7 @@
986
986
  return value;
987
987
  }
988
988
  if (segment.type === 'param') {
989
- return params[segment.value.substring(1)] ?? '';
989
+ return params[segment.value.substring(1)] ?? 'undefined';
990
990
  }
991
991
  return segment.value;
992
992
  }));