Skip to content

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

gap-editor
Copy link

@gap-editor gap-editor commented Aug 14, 2025

Summary by CodeRabbit

  • Bug Fixes
    • Corrected a typographical error in a team member’s title on the site, changing “Former Fellow atr The Legal Design Lab - Stanford University” to “Former Fellow at The Legal Design Lab - Stanford University.”
    • Ensures accurate display of team member information across the site.
    • No functional or structural changes; only text content updated.

Copy link

netlify bot commented Aug 14, 2025

👷 Deploy request for kleros-website pending review.

Visit the deploys page to approve it

Name Link
🔨 Latest commit 374bcb1

Copy link
Contributor

coderabbitai bot commented Aug 14, 2025

Walkthrough

A 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

Cohort / File(s) Summary of Changes
Site metadata text fix
gatsby-config.js
Corrected a typographical error in one team member’s title within siteMetadata.teamMembers. No structural or export changes.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Poem

A rabbit hops through metadata fields,
Tidying titles with typographic shields.
One tiny “at” replaces a wandering “atr,”
Now the credits shine true, polished afar.
Thump-thump—onward to cleaner yields! 🐇✨

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 Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

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.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

Copy link
Contributor

@coderabbitai coderabbitai bot left a 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: Rename dribbledribbble — update consumers too

There'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 dribbledribbble
  • src/pages/book.js
    • import: line 9 imports the SVG (src/assets/svgs/dribble.svg)
    • usage: lines ~172–174 use person.links.dribble (must become person.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.

📥 Commits

Reviewing files that changed from the base of the PR and between 8574e4a and 374bcb1.

📒 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: {},
+      },

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant