-
Notifications
You must be signed in to change notification settings - Fork 125
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
Add María to team page #2389
Add María to team page #2389
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
PR Overview
This PR adds María to the team page by introducing a new staff member entry in the staff data file.
- Introduces a new key for María with her name, bio, and associated image.
- Adds corresponding image reference in the staff data.
Reviewed Changes
File | Description |
---|---|
src/data/staff.js | Added María Juaristi entry with bio and image |
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
Comments suppressed due to low confidence (1)
src/data/staff.js:81
- [nitpick] The multi-line template literal for the bio may include unintended whitespace or newline characters due to the indentation. Consider aligning the content or using string concatenation to ensure consistent formatting.
bio: `is a policy modeling intern at PolicyEngine. She is also pursuing an
src/data/staff.js
Outdated
bio: `is a policy modeling intern at PolicyEngine. She is also pursuing an | ||
undergraduate degree in Political Science and Data Science at Minerva University. | ||
Previously, she was a research intern at University of Chicago.`, | ||
image: require("../images/authors/maria-juaristi.JPG"), |
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.
The image file extension 'JPG' differs from the lowercase convention used elsewhere. If the actual file is named with lowercase, update the extension to '.jpg' to avoid potential issues on case-sensitive systems.
image: require("../images/authors/maria-juaristi.JPG"), | |
image: require("../images/authors/maria-juaristi.jpg"), |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
@juaristi22 Is this finalized? If so, can review today. |
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.
Hi @juaristi22! Just a couple minor recommended changes, then we'll be good to merge.
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.
Thanks @juaristi22!
Fix #2377