fix(docs): Prevent examples index page crash - #1292
Open
sentry[bot] wants to merge 1 commit into
Open
sentry[bot] wants to merge 1 commit into
sentry[bot] wants to merge 1 commit into
Conversation
|
Important Review skippedBot user detected. To trigger a single review, invoke the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Advanced Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
tanstack-com | 61c00a2 | Commit Preview URL Branch Preview URL |
Sep 23 2026, 11:05 PM |
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When navigating to an examples index page (e.g.,
/table/latest/docs/framework/react/examples) without a specific example slug,params._splatisundefined.Previously, this would cause
[framework, params._splat].join('/')to produce a path with a trailing slash (e.g.,react/). This malformed path was then rejected byisValidRepoPathduring validation, leading to a page crash.This fix addresses the issue by:
src/routes/_library/$libraryId/$version.docs.framework.$framework.examples.$.tsx), explicitly checking for an undefinedparams._splatand throwingnotFound()early. This prevents the construction of an invalidrepoStartingDirPathand ensures a graceful 404 for index pages.examplePathconstruction in two other locations within the same file (lines 352 and 613) to ensure that if_splatis ever undefined in those contexts, a trailing slash is not inadvertently created. This provides additional robustness.Fixes TANSTACK-COM-545
@sentry <feedback>: Autofix iterates on these changes@sentry stop iterating: Autofix stops iterating on this runThis PR was automatically generated by Sentry. You can adjust this setting at any time.