-
Notifications
You must be signed in to change notification settings - Fork 22
chore: fix minor typo #317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
👷 Deploy request for kleros-website pending review.Visit the deploys page to approve it
|
WalkthroughA single text correction in gatsby-config.js updates Jose Torres’ title within siteMetadata.teamMembers from “Former Fellow atr The Legal Design Lab - Stanford University” to “Former Fellow at The Legal Design Lab - Stanford University.” Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Poem
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. ✨ Finishing Touches
🧪 Generate unit tests
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🔭 Outside diff range comments (1)
gatsby-config.js (1)
88-91
: Renamedribble
→dribbble
— update consumers tooThere's an existing usage of the
dribble
key; renaming it in gatsby-config.js will break consumers. Update these locations:
- gatsby-config.js (lines ~88–91): replace
dribble
→dribbble
- src/pages/book.js
- import: line 9 imports the SVG (src/assets/svgs/dribble.svg)
- usage: lines ~172–174 use
person.links.dribble
(must becomeperson.links.dribbble
)Proposed diffs:
gatsby-config.js
links: { x: "https://x.com/pliniobraga_", linkedin: "https://www.linkedin.com/in/pliniobraga/", - dribble: "https://dribbble.com/pliniobraga", + dribbble: "https://dribbble.com/pliniobraga", },src/pages/book.js (update property accesses)
-import Dribble from "src/assets/svgs/dribble.svg"; +import Dribble from "src/assets/svgs/dribble.svg"; @@ - {person.links.dribble && ( - <a href={person.links.dribble} rel="noopener noreferrer" target="_blank"> + {person.links.dribbble && ( + <a href={person.links.dribbble} rel="noopener noreferrer" target="_blank"> <Dribble /> </a> )}(Optional) If you want full spelling consistency, also consider renaming the SVG file and import to
dribbble.svg
/Dribbble
, but that’s not strictly required for the key rename.
🧹 Nitpick comments (2)
gatsby-config.js (2)
155-158
: Avoid empty link fields to prevent rendering empty anchors.Empty strings for social links can produce broken/empty UI elements. Prefer omitting the
links
object or the specific properties when data is unavailable.- { - name: "Annabelle Vassallo", - title: "Office Manager", - links: { linkedin: "", x: "" }, - }, + { + name: "Annabelle Vassallo", + title: "Office Manager", + },
427-433
: robots.txt host/sitemap point to example.com (likely placeholder).If this is deployed, search engines will be directed to example.com. Consider switching to the real domain(s) or deriving from config/env.
Proposed tweak using environment variables:
options: { - host: "https://www.example.com", - sitemap: "https://www.example.com/sitemap.xml", + host: process.env.SITE_HOST || "https://www.example.com", + sitemap: (process.env.SITE_HOST || "https://www.example.com") + "/sitemap.xml", policy: [{ userAgent: "*", allow: "/" }], },
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (1)
gatsby-config.js
(1 hunks)
🔇 Additional comments (2)
gatsby-config.js (2)
219-221
: Typo fix looks good.Correcting “atr” → “at” in Jose Torres’ title is accurate and non-breaking.
239-241
: Verify spelling of name “Primavera De Filippi”.This entry likely refers to “Primavera De Filippi” (commonly capitalized “De” and “Filippi” with two “p”s). Please confirm and update if appropriate.
Suggested correction:
- { - name: "Primavera de Flippi", - title: "Faculty Associate at the Berkman Center for Internet & Society at Harvard Law School", - links: {}, - }, + { + name: "Primavera De Filippi", + title: "Faculty Associate at the Berkman Center for Internet & Society at Harvard Law School", + links: {}, + },
Summary by CodeRabbit