fix(docs): correct case of consensus diagram image path (404 on case-sensitive hosting)#443
Open
danilaverbena wants to merge 1 commit into
Open
Conversation
The Optimistic Democracy consensus diagram on the "Understand GenLayer Protocol" page references /studio/Diagram MAIN.jpg, but the committed asset is public/studio/diagram main.jpg (lowercase). On case-sensitive hosting (e.g. the Netlify/Linux production build) the image returns 404 and the diagram fails to render, even though it works on case-insensitive local machines (macOS/Windows). Corrected the reference to match the actual filename.
✅ Deploy Preview for genlayer-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe protocol documentation updates the consensus diagram image reference from ChangesDocumentation Update
Estimated code review effort: 1 (Trivial) | ~2 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
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 |
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.
Problem
On the Understand GenLayer Protocol page, the Optimistic Democracy consensus diagram is referenced as:
but the committed asset is
public/studio/diagram main.jpg(all lowercase).Because the reference case (
Diagram MAIN.jpg) doesn't match the file on disk (diagram main.jpg), the image resolves fine on case-insensitive filesystems (macOS/Windows dev machines) but returns a 404 on case-sensitive hosting (the Linux/Netlify production build). The result is a broken hero diagram on one of the core concept pages.For reference, the other image on the site is referenced with the correct lowercase path already, e.g.
debugging.mdxuses/studio/syntax-error.png.Fix
Update the
srcinpages/understand-genlayer-protocol.mdxto match the actual filename:One-line, non-breaking change; the asset itself is unchanged.
Testing
public/studio/diagram main.jpg(lowercase) and that no file namedDiagram MAIN.jpgexists in the repo.Summary by CodeRabbit