fix(docs): repair Docs tab nav by removing invalid page object#1167
Merged
Conversation
The "Configure & Extend" group in docs.json contained an unsupported
{"page": "...", "tag": "Beta"} entry (introduced in #1160). Mintlify's
docs.json schema only allows path strings or group objects in pages
arrays; the malformed entry caused the entire Docs tab to drop from the
rendered nav, redirecting docs.factory.ai to /guides/power-user/setup-checklist.
Replace it with a plain path string and move the Beta badge into the
sandbox page's frontmatter where Mintlify supports the tag property.
Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
Contributor
|
Droid finished @factory-sagar's task —— View job Droid review complete. The change removes an invalid Mintlify navigation entry and moves the Beta label to supported page frontmatter, which should restore the Docs tab/home redirect behavior. No additional high-confidence issues found in the touched files. |
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
TheFactoriousDROID
approved these changes
May 28, 2026
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.
Summary
docs.factory.aiwas redirecting to/guides/power-user/setup-checklistinstead of/welcome. Root cause: PR #1160 introduced an unsupported{"page": "...", "tag": "Beta"}entry in thepagesarray of the "Configure & Extend" group. Mintlify's docs.json navigation schema only allows path strings orgroupobjects insidepages; the malformed object caused the entire Docs tab to drop from the rendered nav, so the homepage fell through to the next valid tab (Guides).Confirming evidence before fix:
https://docs.factory.ai/307 →/guides/power-user/setup-checklisthttps://docs.factory.ai/llms.txtlisted every tab except Docs (nowelcome/,cli/,web/,integrations/,enterprise/,reference/paths)/welcomestill loaded — only the nav was brokenFix
docs/docs.json.tag: "Beta"to the page frontmatter ofdocs/cli/configuration/sandbox.mdx, where Mintlify supports it (Pages > tag).Verification
python3 -c 'import json; json.load(open("docs/docs.json"))'→ OKmintlify dev(node@22) locally:GET /now 307 →/welcome("Welcome to Factory"), Docs tab restored, Beta badge still present on the Sandbox sidebar entry.